Uses of Interface
ibis.ipl.ReceivePortIdentifier

Packages that use ReceivePortIdentifier
ibis.ipl This package describes the Ibis Portability Layer (IPL), which is to be implemented by Ibis implementations. 
 

Uses of ReceivePortIdentifier in ibis.ipl
 

Methods in ibis.ipl that return ReceivePortIdentifier
 ReceivePortIdentifier[] SendPort.connectedTo()
          Returns the set of receiveports this sendport is connected to.
 ReceivePortIdentifier[] SendPort.lostConnections()
          Polls to find out whether any connections are lost or closed.
 ReceivePortIdentifier ReceivePort.identifier()
          Returns the ReceivePortIdentifier of this receiveport.
 ReceivePortIdentifier Registry.lookupReceivePort(java.lang.String name)
          Locates the ReceivePortIdentifier that has been bound to the specified name.
 ReceivePortIdentifier Registry.lookupReceivePort(java.lang.String name, long timeout)
          Locates the ReceivePortIdentifier that has been bound to the specified name.
 ReceivePortIdentifier[] Registry.listReceivePorts(IbisIdentifier ident)
          Returns the list of receiveport identifiers that are registered with this registry, and have the specified ibis as their controlling ibis.
 

Methods in ibis.ipl with parameters of type ReceivePortIdentifier
 void SendPort.connect(ReceivePortIdentifier receiver)
          Attempts to set up a connection with a receiver.
 void SendPort.disconnect(ReceivePortIdentifier receiver)
          Attempts to disconnect a connection with a receiver.
 void SendPort.connect(ReceivePortIdentifier receiver, long timeoutMillis)
          Attempts to set up a connection with receiver.
 void SendPortConnectUpcall.lostConnection(SendPort me, ReceivePortIdentifier johnDoe, java.lang.Exception reason)
          Upcall that indicates that a connection to a receiveport was lost.
 void Registry.bind(java.lang.String name, ReceivePortIdentifier port)
          Binds the specified name to the specified identifier.
 void Registry.rebind(java.lang.String name, ReceivePortIdentifier port)
          Rebinds the specified name to the specified identifier.
 



The Ibis project