Class Port<C extends IComponent<C>>
- java.lang.Object
-
- io.ciera.runtime.summit.interfaces.Port<C>
-
- All Implemented Interfaces:
IActionHome<C>
,IPort<C>
- Direct Known Subclasses:
HttpPort
public abstract class Port<C extends IComponent<C>> extends Object implements IPort<C>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description C
context()
int
getPeerId()
String
getPeerName()
IRunContext
getRunContext()
boolean
satisfied()
void
satisfy(IPort<?> peer)
void
send(IMessage message)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.ciera.runtime.summit.application.IActionHome
warn
-
-
-
-
Method Detail
-
send
public void send(IMessage message) throws XtumlException
- Throws:
XtumlException
-
satisfy
public void satisfy(IPort<?> peer)
- Specified by:
satisfy
in interfaceIPort<C extends IComponent<C>>
-
satisfied
public boolean satisfied()
- Specified by:
satisfied
in interfaceIPort<C extends IComponent<C>>
-
getPeerName
public String getPeerName()
- Specified by:
getPeerName
in interfaceIPort<C extends IComponent<C>>
-
getPeerId
public int getPeerId()
- Specified by:
getPeerId
in interfaceIPort<C extends IComponent<C>>
-
getRunContext
public IRunContext getRunContext()
- Specified by:
getRunContext
in interfaceIActionHome<C extends IComponent<C>>
-
context
public C context()
- Specified by:
context
in interfaceIActionHome<C extends IComponent<C>>
-
-