Uses of Interface
org.sapia.ubik.net.ServerAddress

Packages that use ServerAddress
org.sapia.ubik.mcast   
org.sapia.ubik.net   
org.sapia.ubik.net.udp   
org.sapia.ubik.rmi.examples.replication   
org.sapia.ubik.rmi.naming.remote   
org.sapia.ubik.rmi.naming.remote.proxy   
org.sapia.ubik.rmi.replication   
org.sapia.ubik.rmi.server   
org.sapia.ubik.rmi.server.command   
org.sapia.ubik.rmi.server.gc   
org.sapia.ubik.rmi.server.transport   
org.sapia.ubik.rmi.server.transport.http   
org.sapia.ubik.rmi.server.transport.http.servlet   
org.sapia.ubik.rmi.server.transport.nio.tcp   
org.sapia.ubik.rmi.server.transport.socket   
org.sapia.ubik.rmi.server.transport.udp   
 

Uses of ServerAddress in org.sapia.ubik.mcast
 

Classes in org.sapia.ubik.mcast that implement ServerAddress
 class InetServerAddress
          Implement a ServerAddress around a an InetAddress and a port.
 

Methods in org.sapia.ubik.mcast that return ServerAddress
 ServerAddress UnicastDispatcher.getAddress()
          Returns the address of this instance.
 ServerAddress UDPUnicastDispatcher.getAddress()
           
 ServerAddress View.getAddressFor(java.lang.String node)
          Returns the ServerAddress corresponding to the given node.
 

Methods in org.sapia.ubik.mcast with parameters of type ServerAddress
 void UnicastDispatcher.dispatch(ServerAddress addr, java.lang.String type, java.lang.Object data)
          Dispatches the given data to the node whose address is given.
 void UDPUnicastDispatcher.dispatch(ServerAddress addr, java.lang.String type, java.lang.Object data)
           
 void EventChannel.dispatch(ServerAddress addr, java.lang.String type, java.lang.Object data)
           
 void DiscoveryListener.onDiscovery(ServerAddress addr, RemoteEvent evt)
          This method is called by the EventChannel to which this instance belongs.
 Response UnicastDispatcher.send(ServerAddress addr, java.lang.String type, java.lang.Object data)
          Sends the given data to the node whose address is given, returning the corresponding response - received from the destination.
 Response UDPUnicastDispatcher.send(ServerAddress addr, java.lang.String type, java.lang.Object data)
           
 Response EventChannel.send(ServerAddress addr, java.lang.String type, java.lang.Object data)
          Synchronously sends a remote event to the node corresponding to the given ServerAddress, and returns the corresponding response.
 

Uses of ServerAddress in org.sapia.ubik.net
 

Classes in org.sapia.ubik.net that implement ServerAddress
 class TCPAddress
          This class models a TCP "server address".
 

Methods in org.sapia.ubik.net that return ServerAddress
 ServerAddress SocketConnection.getServerAddress()
           
 ServerAddress Connection.getServerAddress()
          Returns "address" of the server with which this connection communicates.
 ServerAddress Request.getServerAddress()
          Returns the address of the server that received the request.
 

Constructors in org.sapia.ubik.net with parameters of type ServerAddress
Request(Connection client, ServerAddress localHost)
          Creates an instance of this class.
 

Uses of ServerAddress in org.sapia.ubik.net.udp
 

Classes in org.sapia.ubik.net.udp that implement ServerAddress
 class UDPServerAddress
          Implement a ServerAddress around a an InetAddress and a port.
 

Methods in org.sapia.ubik.net.udp that return ServerAddress
 ServerAddress UDPConnection.getServerAddress()
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.examples.replication
 

Methods in org.sapia.ubik.rmi.examples.replication with parameters of type ServerAddress
 void ReplicatedInvokerImpl.dispatch(ReplicatedCommand cmd, ServerAddress addr)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.naming.remote
 

Methods in org.sapia.ubik.rmi.naming.remote with parameters of type ServerAddress
static ClientListener JNDIServerHelper.createClientListener(EventChannel ec, ServerAddress addr)
           
 

Constructors in org.sapia.ubik.rmi.naming.remote with parameters of type ServerAddress
ClientListener(EventChannel channel, ServerAddress addr)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.naming.remote.proxy
 

Methods in org.sapia.ubik.rmi.naming.remote.proxy with parameters of type ServerAddress
 RemoteContext DefaultContextResolver.resolve(ServerAddress addr)
           
 RemoteContext ContextResolver.resolve(ServerAddress addr)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.replication
 

Methods in org.sapia.ubik.rmi.replication that return ServerAddress
 ServerAddress ReplicationStrategy.selectNextSibling()
           
 

Methods in org.sapia.ubik.rmi.replication with parameters of type ServerAddress
protected  java.lang.Object ReplicatedCommand.send(ServerAddress next)
          This method synchronously or asynchronously sends this instance to the server at the given address.
 

Uses of ServerAddress in org.sapia.ubik.rmi.server
 

Fields in org.sapia.ubik.rmi.server declared as ServerAddress
protected  ServerAddress RemoteRef._serverAddress
           
 

Methods in org.sapia.ubik.rmi.server that return ServerAddress
 ServerAddress ClientRuntime.getCallbackAddress(java.lang.String transportType)
          Returns this client's call-back server address (corresponds to the this client's singleton server, which will process incoming responses).
 ServerAddress RMICommand.getServerAddress()
          Returns this command's target server address, which corresponds to the server that received this command.
 ServerAddress Server.getServerAddress()
          Returns this instance's address.
 ServerAddress RemoteRef.getServerAddress()
          Returns the address of the server to which this stub "belongs".
 ServerAddress ServerTable.getServerAddress()
          Returns the adress of the server corresponding to the default transport type.
 ServerAddress Config.getServerAddress()
           
 ServerAddress ServerTable.getServerAddress(java.lang.String transportType)
           
static ServerAddress Hub.getServerAddressFor(java.lang.String transportType)
          Returns the address of the server for the given transport type.
 

Methods in org.sapia.ubik.rmi.server with parameters of type ServerAddress
static java.lang.Object Hub.connect(ServerAddress address)
          This method allows connecting to a RMI server listening on the given address.
 void ConnectionListener.onConnectionClosed(ServerAddress addr)
          This method is called when a remote host has closed its connection to the server.
 void ConnectionListener.onConnectionCreated(ServerAddress addr)
          This method is called when a remote host opens its connection to the server.
 

Constructors in org.sapia.ubik.rmi.server with parameters of type ServerAddress
Config(ServerAddress addr, Connection conn)
           
RemoteRef(OID oid, ServerAddress serverAddress)
          Creates an instance of this class, with the given object and host identifiers.
RemoteRefEx(OID oid, ServerAddress serverAddress)
          Creates an instance of this class, with the given object and host identifiers.
RemoteRefReliable(OID oid, ServerAddress serverAddress)
          Creates an instance of this class, with the given object and host identifiers.
RemoteRefStateless.ServiceInfo(ServerAddress addr, OID id, boolean callback, VmId vmId, boolean isFirstVoyage)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.server.command
 

Methods in org.sapia.ubik.rmi.server.command that return ServerAddress
 ServerAddress AsyncCommand.getFrom()
          Returns the address of the server to call back, and from which this command originates.
 ServerAddress Destination.getServerAddress()
          Returns this instance's server address.
 

Methods in org.sapia.ubik.rmi.server.command with parameters of type ServerAddress
 void CommandProcessor.processAsyncCommand(java.lang.String cmdId, VmId caller, ServerAddress from, Command cmd)
          Processes the given command asynchronously.
 

Constructors in org.sapia.ubik.rmi.server.command with parameters of type ServerAddress
AsyncCommand(java.lang.String cmdId, VmId caller, ServerAddress from, Command cmd)
          Constructor for AsyncCommandWrapper.
Destination(ServerAddress addr, VmId vmId)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.server.gc
 

Methods in org.sapia.ubik.rmi.server.gc that return ServerAddress
 ServerAddress GcEvent.getOriginAddress()
          Returns the address of the host from which the GC synchronization call comes.
 

Methods in org.sapia.ubik.rmi.server.gc with parameters of type ServerAddress
 boolean ClientGC.register(ServerAddress address, OID oid, java.lang.Object remote)
          Registers an object identifier, associated to a stub.
 

Uses of ServerAddress in org.sapia.ubik.rmi.server.transport
 

Methods in org.sapia.ubik.rmi.server.transport with parameters of type ServerAddress
static Connections TransportManager.getConnectionsFor(ServerAddress address)
          Gets a connection pool that holds connections to a server, given the server's address.
 Connections TransportProvider.getPoolFor(ServerAddress address)
          Returns a client connection pool to the given server address.
 

Uses of ServerAddress in org.sapia.ubik.rmi.server.transport.http
 

Classes in org.sapia.ubik.rmi.server.transport.http that implement ServerAddress
 class HttpAddress
          Models an HTTP address.
 

Methods in org.sapia.ubik.rmi.server.transport.http that return ServerAddress
 ServerAddress HttpRmiClientConnection.getServerAddress()
           
 ServerAddress JdkRmiClientConnection.getServerAddress()
           
 

Methods in org.sapia.ubik.rmi.server.transport.http with parameters of type ServerAddress
 Connections HttpTransportProvider.getPoolFor(ServerAddress address)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.server.transport.http.servlet
 

Classes in org.sapia.ubik.rmi.server.transport.http.servlet that implement ServerAddress
 class ServletAddress
          Models the network address of a servlet.
 

Methods in org.sapia.ubik.rmi.server.transport.http.servlet that return ServerAddress
 ServerAddress ServletRmiConnection.getServerAddress()
           
 ServerAddress ServletServer.getServerAddress()
           
 

Methods in org.sapia.ubik.rmi.server.transport.http.servlet with parameters of type ServerAddress
 Connections ServletTransportProvider.getPoolFor(ServerAddress address)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.server.transport.nio.tcp
 

Classes in org.sapia.ubik.rmi.server.transport.nio.tcp that implement ServerAddress
 class NioAddress
           
 

Methods in org.sapia.ubik.rmi.server.transport.nio.tcp that return ServerAddress
 ServerAddress NioTcpRmiClientConnection.getServerAddress()
           
 ServerAddress NioTcpRmiServerConnection.getServerAddress()
           
 

Methods in org.sapia.ubik.rmi.server.transport.nio.tcp with parameters of type ServerAddress
 Connections NioTcpTransportProvider.getPoolFor(ServerAddress address)
           
 

Constructors in org.sapia.ubik.rmi.server.transport.nio.tcp with parameters of type ServerAddress
NioHandler(ServerAddress addr)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.server.transport.socket
 

Methods in org.sapia.ubik.rmi.server.transport.socket that return ServerAddress
 ServerAddress SocketRmiServer.getServerAddress()
           
 

Methods in org.sapia.ubik.rmi.server.transport.socket with parameters of type ServerAddress
 Connections SocketTransportProvider.getPoolFor(ServerAddress address)
           
 

Uses of ServerAddress in org.sapia.ubik.rmi.server.transport.udp
 

Methods in org.sapia.ubik.rmi.server.transport.udp that return ServerAddress
 ServerAddress UdpRmiServer.getServerAddress()
           
 



Copyright © 2010 Sapia OSS. All Rights Reserved.