|
DRCL JavaSim API | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of Port in drcl.comp |
| Fields in drcl.comp declared as Port | |
Port |
Component.infoPort
The information port of this component. |
protected Port |
WorkerThread.returnPort
|
Port |
Task.port
Port to which data is delivered. |
Port |
Task.returnPort
The return port for server port operation. |
Port |
Util.Link.from
|
Port |
Util.Link.to
|
| Methods in drcl.comp that return Port | |
Port |
Component.addEventPort(java.lang.String pid_)
Adds an event port to the default port group of this component. |
Port |
Component.addEventPort(java.lang.String pgid_,
java.lang.String pid_)
Adds an event port to the specified port group of this component. |
Port |
Component.addServerPort(java.lang.String pid_)
Adds a server port to the default port group of this component. |
Port |
Component.addServerPort(java.lang.String pgid_,
java.lang.String pid_)
Adds a server port to the specified port group of this component. |
Port |
Component.addForkPort(java.lang.String pid_)
Adds a fork port to the default port group of this component. |
Port |
Component.getPort(java.lang.String groupID_,
java.lang.String id_)
Returns the port given the group ID and the port ID. |
Port |
Component.getPort(java.lang.String id_)
Returns the port in the default group given the port ID. |
Port[] |
Component.getAllPorts()
Returns all the ports of this component. |
Port[] |
Component.getAllPorts(java.lang.String groupID_)
Returns all the ports of the port group in this component. |
Port |
Component.removePort(java.lang.String groupID_,
java.lang.String id_)
Removes the port given the group id and the port id. |
Port |
Component.removePort(Port p_)
Removes the port. |
Port |
Component.removePort(java.lang.String id_)
Removes the port in the default port group. |
Port |
Component.addPort(Port new_,
java.lang.String groupID_,
java.lang.String newID_)
Adds a port with the given group id and the port id. |
Port |
Component.addPort(Port new_,
java.lang.String groupID_,
java.lang.String newID_,
boolean isRemovable_)
Adds a port with the given group id and the port id. |
Port |
Component.addPort(Port new_,
java.lang.String newID_)
Adds a port to the default port group with the given port id, It assigns an ID if the given id is null. |
Port |
Component.addPort(Port new_,
java.lang.String newID_,
boolean isRemovable_)
Adds a port to the default port group with the given port id, It assigns an ID if the given id is null. |
Port |
Component.addPort(java.lang.String id_)
Creates a port in the default port group with the given port id, It assigns an ID if the given id is null. |
Port |
Component.addPort(java.lang.String id_,
boolean isRemovable_)
Creates a port in the default port group with the given port id, It assigns an ID if the given id is null. |
Port |
Component.addPort(java.lang.String groupID_,
java.lang.String id_)
Creates a port with the given group id and the port id. |
Port |
Component.addPort(java.lang.String groupID_,
java.lang.String id_,
boolean isRemovable_)
Creates a port with the given group id and the port id. |
Port |
Component.findAvailable()
Returns an unconnected port from the default connection port group of this component. |
Port |
Component.findAvailable(java.lang.String groupID_)
Returns an unconnected port from the specified port group. |
Port |
Component.findAvailable(java.lang.String groupID_,
java.lang.String portType_)
Returns an unconnected port of the given port type from the specified port group. |
Port |
Component.exposePort(Component child_,
java.lang.String pid_)
Creates a port that proxies for the client port, specified by the child component, group id and port id. |
Port |
Component.exposePort(Component child_,
java.lang.String groupID_,
java.lang.String id_)
Creates a shadow port for a port of the child component's, specified by the child component, the port group id and the port id. |
Port |
Component.exposePort(Component child_,
java.lang.String groupID_,
java.lang.String id_,
java.lang.String mygroupID_,
java.lang.String myID_)
Creates a shadow port, with the given group id and the port id, for a port of the child component, specified by the child component, the port group id and the port id. |
Port |
Component.exposePort(Port client_)
Creates a shadow port for the client port and makes it have the same group ID and port ID as the client's. |
Port |
Component.exposePort(Port client_,
java.lang.String mygroupID_,
java.lang.String myID_)
Creates a shadow port, with the given group id and the port id, for the client port. |
Port[] |
Wire.getInPorts()
Returns all the "IN" ports that are attached to this wire. |
Port[] |
Wire.getOutPorts()
Returns all the "OUT" ports that are attached to this wire. |
Port[] |
Wire.getPorts()
Returns all the ports that are attached to this wire. |
Port[] |
Wire.getPortsExcept(Port excluded_)
Returns all the ports, except excluded_, that
are attached to this wire. |
Port[] |
Wire.getPortsIn(Component container_)
Returns all the ports, inside the container, which are attached to this wire. |
Port[] |
Port.getClients()
|
Port[] |
Port.getOutClients()
|
Port[] |
Port.getInClients()
|
Port[] |
Port.getPeers()
|
Port[] |
Port.getOutPeers()
|
Port[] |
Port.getInPeers()
|
Port[] |
Port.getShadows()
|
Port[] |
Port.getOutShadows()
|
Port[] |
Port.getInShadows()
|
Port[] |
Port.getParentPeers()
Returns host's parent's peers and the shadow ports. |
| Methods in drcl.comp with parameters of type Port | |
protected void |
Component.process(java.lang.Object data_,
Port inPort_)
The main callback method of a component. |
Port |
Component.removePort(Port p_)
Removes the port. |
void |
Component.setPort(Port newPort_,
java.lang.String groupID_,
java.lang.String id_)
Replaces the port, the given group id and the port id, with newPort. |
void |
Component.setPort(Port newPort_,
java.lang.String id_)
Replaces the port in the default port group, given the port id, with newPort. |
Port |
Component.addPort(Port new_,
java.lang.String groupID_,
java.lang.String newID_)
Adds a port with the given group id and the port id. |
Port |
Component.addPort(Port new_,
java.lang.String groupID_,
java.lang.String newID_,
boolean isRemovable_)
Adds a port with the given group id and the port id. |
Port |
Component.addPort(Port new_,
java.lang.String newID_)
Adds a port to the default port group with the given port id, It assigns an ID if the given id is null. |
Port |
Component.addPort(Port new_,
java.lang.String newID_,
boolean isRemovable_)
Adds a port to the default port group with the given port id, It assigns an ID if the given id is null. |
boolean |
Component.containsPort(Port p_)
Returns true if the component owns the port. |
boolean |
Component.isPortRemovable(Port p_)
Returns true if the port is removable from this component. |
protected void |
Component.setPortRemovable(Port p_,
boolean v_)
Sets the port to be (un)removable. |
Port |
Component.exposePort(Port client_)
Creates a shadow port for the client port and makes it have the same group ID and port ID as the client's. |
Port |
Component.exposePort(Port client_,
java.lang.String mygroupID_,
java.lang.String myID_)
Creates a shadow port, with the given group id and the port id, for the client port. |
protected void |
Component.portAdded(Port p_)
The hookup method for subclasses to handle the event when the port p_ is added to
the component. |
protected void |
Component.portRemoved(Port p_)
The hookup method for subclasses to handle the event when the port p_ is removed from
the component. |
void |
Component.error(java.lang.Object data_,
java.lang.String method_,
Port p_,
java.lang.Object error_)
Sends an error message at infoport. |
ACATimer |
Component.send(Port which_,
java.lang.Object data_,
double duration_)
Sets up a delayed send event. |
ACATimer |
Component.sendAt(Port which_,
java.lang.Object data_,
double time_)
Sets up a delayed send event. |
ACATimer |
Component.fork(Port which_,
java.lang.Object data_,
double duration_)
Sets up a fork event. |
ACATimer |
Component.forkAt(Port which_,
java.lang.Object data_,
double time_)
Sets up a fork event. |
static Contract |
Component.getContract(Port p_)
Returns the contract associated with the port. |
protected void |
Extension.portAdded(Port p_)
|
protected void |
WrapperComponent.process(java.lang.Object data_,
Port inPort_)
|
protected void |
AWorkerThread.changeCurrentContext(Port port_,
java.lang.Object data_,
java.lang.String state_)
|
protected abstract ACATimer |
ForkManager.receive(Port p_,
java.lang.Object evt_,
double duration_)
Sets up a "receive" event. |
protected abstract ACATimer |
ForkManager.receiveAt(Port p_,
java.lang.Object evt_,
double time_)
Sets up a "receive" event. |
protected abstract ACATimer |
ForkManager.send(Port p_,
java.lang.Object evt_,
double duration_)
Sets up a "send" event. |
protected abstract ACATimer |
ForkManager.sendAt(Port p_,
java.lang.Object evt_,
double time_)
Sets up a "send" event. |
void |
ACARuntime.addRunnable(double later_,
Port port_,
java.lang.Runnable task_)
|
void |
ACARuntime.addRunnableAt(double time_,
Port port_,
java.lang.Runnable task_)
|
protected ACATimer |
ACARuntime.receive(Port p_,
java.lang.Object evt_,
double duration_)
|
protected ACATimer |
ACARuntime.receiveAt(Port p_,
java.lang.Object evt_,
double time_)
|
protected ACATimer |
ACARuntime.send(Port p_,
java.lang.Object evt_,
double duration_)
|
protected ACATimer |
ACARuntime.sendAt(Port p_,
java.lang.Object evt_,
double time_)
|
static java.lang.String |
Util.getPortFullID(Port p_)
Returns the full path of a port. |
static java.lang.String |
Util.getPortFullID(Port p_,
boolean type_)
Returns the full path of a port. |
static java.lang.String |
Util.getPortID(Port p_,
Component stop_)
Returns the partial path of a port starting from the stop_ ancester. |
static java.lang.String |
Util.getPortID(Port p_,
Component stop_,
boolean type_)
Returns the partial path of a port starting from the stop_ ancester. |
static java.lang.String |
Util.getPortID(Port p_,
java.lang.Class stopClass_)
Returns the partial path of a port starting from the closest ancester that belongs to the given class. |
static java.lang.String |
Util.getPortID(Port p_,
java.lang.Class stopClass_,
boolean type_)
Returns the partial path of a port starting from the closest ancester that belongs to the given class. |
static java.lang.String |
Util.getPortID(Port p_)
Returns the canonical form of the port ID. |
static java.lang.String |
Util.compare(Port p1_,
Port p2_)
Does a structural comparison between two ports. |
static java.lang.String |
Util.checkConnect(Port p1_,
Port p2_)
Checks if two ports are connected and the type of connection if there is any. |
static Util.Link[] |
Util.getLinks(Port p_)
Explores a port's peers in a hierarchical mannger. |
void |
Handler.process(java.lang.Object data_,
Port inPort_)
|
Wire |
Wire.join(Port p_,
java.lang.String type_)
Joins the port with this wire. |
Wire |
Wire.join(Port p1_,
Port p2_,
java.lang.String type_)
Joins the two ports with this wire. |
Wire |
Wire.join(Port p1_,
java.lang.String type1_,
Port p2_,
java.lang.String type2_)
Joins the two ports with this wire. |
Wire |
Wire.join(Port[] pp_,
java.lang.String type_)
Joins the ports with this wire. |
void |
Wire.attach(Port p_)
Attaches the port to this wire as an "IN" port. |
void |
Wire.attach(Port[] pp_)
Attaches the ports to this wire as "IN" ports. |
void |
Wire.detach(Port p_)
Detaches the port from "IN" ports. |
void |
Wire.detach(Port[] pp_)
Detaches the ports from "IN" ports. |
void |
Wire.disconnect(Port p_)
Disconnects the port from this wire. |
void |
Wire.disconnect(Port[] pp_)
Disconnects the ports from this wire. |
void |
Wire.split(Port[] pp_)
Splits the ports from this wire. |
boolean |
Wire.anyPortExcept(Port excluded_)
Returns true if there exists a port, other than excluded_,
which is connected to this wire. |
boolean |
Wire.isAttachedToBy(Port p_)
Returns true if the specified port is attached to this wire. |
boolean |
Wire.isAttachedToBy(Port p_,
java.lang.String type_)
Returns true if the specified port is attached to this wire as the type specified. |
java.lang.String |
Wire.getType(Port p_)
Returns the type of connection by which the port is connected to this wire. |
Port[] |
Wire.getPortsExcept(Port excluded_)
Returns all the ports, except excluded_, that
are attached to this wire. |
protected void |
ComponentTemplate.process(java.lang.Object data_,
Port inPort_)
|
boolean |
Port.isConnectedWith(Port p_)
|
protected void |
Port.doReceiving(java.lang.Object data_,
Port peer_,
WorkerThread thread_)
Data come in from a peer/client port. |
boolean |
Port.connect(Port peer_)
Bi-direction connection, consider proxying. |
void |
Port.connect(Port[] pp_)
Disconnects from the given ports. |
void |
Port.attachIn(Port p_)
|
void |
Port.attachIn(Port[] pp_)
|
void |
Port.detachIn(Port p_)
|
void |
Port.detachIn(Port[] pp_)
|
void |
Port.attachOut(Port p_)
|
void |
Port.attachOut(Port[] pp_)
|
void |
Port.detachOut(Port p_)
|
void |
Port.detachOut(Port[] pp_)
|
boolean |
Port.connectTo(Port peer_)
Uni-direction connection, consider proxying. |
void |
Port.connectTo(Port[] pp_)
Connects to the given ports. |
| Constructors in drcl.comp with parameters of type Port | |
TaskSend(Port port_,
java.lang.Object data_)
Creates a task to be executed immediately. |
|
TaskSend(Port port_,
java.lang.Object data_,
double time_)
Creates a task to be executed at the specified time. |
|
Util.Link(Port from_,
Port to_)
|
|
Util.Link(Port from_,
Component next_,
Port to_)
|
|
TaskReceive(Port port_,
java.lang.Object data_)
Creates a task to be executed immediately. |
|
TaskReceive(Port port_,
java.lang.Object data_,
Port returnPort_)
Creates a prioritized task to be conducted immediately, with a return port. |
|
TaskReceive(Port port_,
java.lang.Object data_,
double time_)
Creates a prioritized task to be conducted at the specified time. |
|
TaskSpecial(Port port_,
int type_,
double time_)
Creates a start/stop/resume task to be executed at the specified time. |
|
TaskSpecial(Port port_,
java.lang.Object data_,
int type_,
double time_)
Creates a notify/runnable task to be executed at the specified time. |
|
| Uses of Port in drcl.comp.contract |
| Constructors in drcl.comp.contract with parameters of type Port | |
ErrorContract.Message(double time_,
Port p_,
java.lang.Object data_,
java.lang.String where_,
java.lang.Object description_)
|
|
| Uses of Port in drcl.comp.io |
| Methods in drcl.comp.io with parameters of type Port | |
protected void |
FileComponent.process(java.lang.Object data_,
Port inPort_)
|
protected void |
Stdout.process(java.lang.Object data_,
Port inPort_)
|
| Uses of Port in drcl.comp.lib |
| Fields in drcl.comp.lib declared as Port | |
protected Port |
Talk.port
|
| Methods in drcl.comp.lib with parameters of type Port | |
protected void |
Relay.process(java.lang.Object data_,
Port inPort_)
|
protected void |
TextDisplay.process(java.lang.Object data_,
Port inPort_)
|
void |
Talk.process(java.lang.Object data_,
Port inPort_)
Invoked when data_ arrives this component at the inPort_ port. |
void |
Bouncer.process(java.lang.Object data_,
Port inPort_)
|
| Uses of Port in drcl.comp.lib.bytestream |
| Methods in drcl.comp.lib.bytestream with parameters of type Port | |
static int |
ByteStreamContract.query(Port port_)
|
protected void |
ByteStreamNetPeer.process(java.lang.Object data_,
Port inPort_)
|
void |
ByteStreamPeer.hookup(Port down_)
|
| Constructors in drcl.comp.lib.bytestream with parameters of type Port | |
ByteStreamPeer(Port down_)
|
|
| Uses of Port in drcl.comp.queue |
| Fields in drcl.comp.queue declared as Port | |
protected Port |
ActiveQueue.outport
|
protected Port |
QLogic.qSizePort
Port that exports the instant queue size change events. |
| Methods in drcl.comp.queue with parameters of type Port | |
protected void |
ActiveQueue.process(java.lang.Object data_,
Port inPort_)
|
static void |
ActiveQueueContract.enqueue(java.lang.Object data_,
Port out_)
|
static java.lang.Object |
ActiveQueueContract.dequeue(Port out_)
|
static java.lang.Object |
ActiveQueueContract.peek(Port out_)
|
static boolean |
ActiveQueueContract.isFull(Port out_)
|
static boolean |
ActiveQueueContract.isEmpty(Port out_)
|
static int |
ActiveQueueContract.getSize(Port out_)
|
static int |
ActiveQueueContract.getCapacity(Port out_)
|
static void |
ActiveQueueContract.setCapacity(int size_,
Port out_)
|
static java.lang.Object |
ActiveQueueContract.pull(Port out_)
|
| Uses of Port in drcl.comp.tool |
| Fields in drcl.comp.tool declared as Port | |
Port |
Extender.inport
|
Port |
Extender.outport
|
| Methods in drcl.comp.tool with parameters of type Port | |
protected void |
Extender.process(java.lang.Object data_,
Port inPort_)
|
void |
ComponentMonitor.process(java.lang.Object data_,
Port inPort_)
|
protected void |
ComponentTester.process(java.lang.Object data_,
Port inPort_)
|
java.lang.Object |
ComponentTester.addEvent(java.lang.String evtType_,
double time_,
java.lang.Object toSend_,
Port p_)
Adds a "sending"/"rr-reply" event. |
java.lang.Object |
ComponentTester.addEvent(java.lang.String evtType_,
double time_,
java.lang.Object toRcv_,
java.lang.String classExpected_,
Port p_)
Adds a "receiving"/"rr-request" event. |
java.lang.Object |
ComponentTester.insertEvent(int index_,
java.lang.String evtType_,
double time_,
java.lang.Object toSend_,
Port p_)
Inserts a "sending" event Use ComponentTester.viewBatch() to view the list of events in the batch. |
java.lang.Object |
ComponentTester.insertEvent(int index_,
java.lang.String evtType_,
double time_,
java.lang.Object toRcv_,
java.lang.String classExpected_,
Port p_)
Inserts a "receiving" event Use ComponentTester.viewBatch() to view the list of events in the batch. |
java.lang.Object |
ComponentTester.getData(Port port_)
Returns the first data in the queue, coming in from the port specified. |
protected void |
ComponentDebugger.process(java.lang.Object data_,
Port inPort_)
Result is back from the monitored component. |
protected void |
DataCounter.process(java.lang.Object data_,
Port inPort_)
|
protected void |
Plotter.process(java.lang.Object data_,
Port inPort_)
|
void |
EventTester.match(double time_,
java.lang.Object data_,
Port p_)
Matches a receipt event. |
drcl.comp.tool.EventTester.Event |
EventTester.addEvent(java.lang.String evtType_,
double time_,
java.lang.Object toSend_,
Port p_)
Adds a "send"/"rr-reply" event. |
drcl.comp.tool.EventTester.Event |
EventTester.addEvent(java.lang.String evtType_,
double time_,
java.lang.Object toRcv_,
java.lang.String classExpected_,
Port p_)
Adds a "receive"/"rr-request" event. |
drcl.comp.tool.EventTester.Event |
EventTester.insertEvent(int index_,
java.lang.String evtType_,
double time_,
java.lang.Object toSend_,
Port p_)
Inserts a "send"/"rr-reply" event |
drcl.comp.tool.EventTester.Event |
EventTester.insertEvent(int index_,
java.lang.String evtType_,
double time_,
java.lang.Object toRcv_,
java.lang.String classExpected_,
Port p_)
Inserts a "receive" event |
| Uses of Port in drcl.diffserv |
| Methods in drcl.diffserv with parameters of type Port | |
protected void |
TrafficConditioner.dataArriveAtUpPort(java.lang.Object data_,
Port upPort_)
|
| Uses of Port in drcl.inet |
| Methods in drcl.inet that return Port | |
Port |
CSLBuilder.addUpPort(int pid_)
|
Port |
CSLBuilder.addDownPort(int ifindex_)
|
Port |
Protocol.createIDServicePort()
Creates and returns a port to use with the IDLookup
and/or the {#link IDConfig} contracts
in this protocol implementation. |
Port |
Protocol.createRTServicePort()
Creates and returns a port to use with the RTLookup
and/or the RTConfig contracts
in this protocol implementation. |
Port |
Protocol.createIFQueryPort()
Creates and returns a port to use with the IFQuery contract
in this protocol implementation. |
Port |
Protocol.createConfigSwitchPort()
Creates and returns a port to use with the ConfigSwitch contract
in this protocol implementation. |
Port |
Protocol.createUcastQueryPort()
Creates and returns a port to accept the unicast queries from the core service layer in this protocol implementation. |
Port |
Protocol.createMcastQueryPort()
Creates and returns a port to accept the multicast queries from the core service layer in this protocol implementation. |
Port |
Protocol.createPktArrivalEventPort()
Creates and returns a port to accept the packet arrival events from the core service layer in this protocol implementation. |
Port |
Protocol.createIDChangedEventPort()
Creates and returns a port to accept the identity changed events from the core service layer in this protocol implementation. |
Port |
Protocol.createUnicastRTChangedEventPort()
Creates and returns a port to accept the unicast routing entry changed events from the core service layer in this protocol implementation. |
Port |
Protocol.createMulticastRTChangedEventPort()
Creates and returns a port to accept the multicast routing entry changed events from the core service layer in this protocol implementation. |
Port |
Protocol.createIFEventPort()
Creates and returns a port to accept the interface/neighbor events from the core service layer in this protocol implementation. |
Port |
Protocol.createVIFEventPort()
Creates and returns a port to accept the virtual interface/neighbor events from the core service layer in this protocol implementation. |
Port |
Protocol.createMcastHostEventPort()
Creates and returns a port to accept the multicast host join/leave events in this protocol implementation. |
protected abstract Port[][] |
CoreServiceLayer.getNAMPacketEventPorts()
Returns the ports that output packets that are to be enqueued in and dequeued/dropped from the buffer. |
| Methods in drcl.inet with parameters of type Port | |
protected void |
Link.process(java.lang.Object data_,
Port inPort_)
|
void |
Link.attach(Port p1_,
Port p2_)
|
protected void |
Node.portAdded(Port mine_)
Notified when a port is added. |
protected int[] |
Protocol.ucastQueryHandler(RTKey request_,
Port inPort_)
Called back when a unicast query event is received. |
protected int[] |
Protocol.mcastQueryHandler(RTKey request_,
Port inPort_)
Called back when a unicast query event is received. |
protected void |
Protocol.pktArrivalHandler(EventContract.Message event_,
Port inPort_)
Called back when a packet arrival event is received. |
protected void |
Protocol.idAddedEventHandler(java.lang.Object data_,
Port inPort_)
Called back when an identity added event is received. |
protected void |
Protocol.idRemovedEventHandler(java.lang.Object data_,
Port inPort_)
Called back when an identity removed event is received. |
protected void |
Protocol.rtAddedEventHandler(java.lang.Object data_,
Port inPort_)
Called back when a routing entry added event is received. |
protected void |
Protocol.rtRemovedEventHandler(java.lang.Object data_,
Port inPort_)
Called back when a routing entry removed event is received. |
protected void |
Protocol.rtModifiedEventHandler(java.lang.Object data_,
Port inPort_)
Called back when a routing entry modified event is received. |
protected void |
Protocol.neighborUpEventHandler(int ifindex_,
NetAddress neighbor_,
Port inPort_)
Called back when a neighbor up event is received. |
protected void |
Protocol.neighborDownEventHandler(int ifindex_,
NetAddress neighbor_,
Port inPort_)
Called back when a neighbor down event is received. |
protected void |
Protocol.vNeighborUpEventHandler(int ifindex_,
NetAddress neighbor_,
Port inPort_)
Called back when a (virtual) neighbor up event is received. |
protected void |
Protocol.vNeighborDownEventHandler(int ifindex_,
NetAddress neighbor_,
Port inPort_)
Called back when a (virtual) neighbor down event is received. |
protected void |
Protocol.mcastHostJoinEventHandler(long src_,
long srcmask_,
long group_,
int ifindex_,
Port inPort_)
Called back when a multicast host join event is received. |
protected void |
Protocol.mcastHostLeaveEventHandler(long src_,
long srcmask_,
long group_,
int ifindex_,
Port inPort_)
Called back when a multicast host leave event is received. |
protected void |
Protocol.processOther(java.lang.Object data_,
Port inPort_)
|
protected abstract void |
CoreServiceLayer.portAdded(Port mine_)
Subclasses must implement this to adapt to ports being added at run-time. |
| Uses of Port in drcl.inet.application |
| Methods in drcl.inet.application with parameters of type Port | |
protected void |
SApplication.process(java.lang.Object data_,
Port inPort_)
|
protected void |
SUDPApplication.dataArriveAtDownPort(java.lang.Object data_,
Port downPort_)
|
protected void |
SUDPApplication.processOther(java.lang.Object data_,
Port inPort_)
|
protected void |
fsp.processOther(java.lang.Object data_,
Port inPort_)
|
protected void |
BulkSink.process(java.lang.Object data_,
Port inPort_)
|
protected void |
BulkSource.process(java.lang.Object data_,
Port inPort_)
|
| Uses of Port in drcl.inet.contract |
| Methods in drcl.inet.contract with parameters of type Port | |
static void |
RTConfig.add(RTKey key_,
RTEntry entry_,
double timeout_,
Port out_)
|
static void |
RTConfig.graft(RTKey key_,
BitSet bs_,
java.lang.Object extension_,
double timeout_,
Port out_)
|
static void |
RTConfig.prune(RTKey key_,
BitSet bs_,
java.lang.Object extension_,
double timeout_,
Port out_)
|
static java.lang.Object |
RTConfig.remove(RTKey key_,
java.lang.String match_,
Port out_)
|
static java.lang.Object |
RTConfig.retrieve(RTKey key_,
java.lang.String match_,
Port out_)
|
static java.lang.Object |
RTConfig.getAllEntries(Port out_)
|
static long |
IDLookup.getDefaultID(Port out_ |