Package org.jcsp.net.dynamic
Interface InputReconnectionManager
-
- All Superinterfaces:
java.io.Serializable
public interface InputReconnectionManager extends java.io.Serializable
Receiving end of a migratable channel. The underlying channel can be obtained by thegetInputChannel
method and used like any other channel. Before migrating the channel, theprepareToMove
method must be called.- Author:
- Quickstone Technologies Limited
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetChannelLocation
getCurrentLocation()
Returns the current location of the channel.NetAltingChannelInput
getInputChannel()
Returns the underlying input channel.void
prepareToMove()
Prepares the channel for a transfer between nodes.
-
-
-
Method Detail
-
getInputChannel
NetAltingChannelInput getInputChannel()
Returns the underlying input channel.
-
getCurrentLocation
NetChannelLocation getCurrentLocation()
Returns the current location of the channel.
-
prepareToMove
void prepareToMove()
Prepares the channel for a transfer between nodes.
-
-