- java.lang.Object
-
- swim.actor.ActorCell
-
- All Implemented Interfaces:
CellBinding,CellContext,Log
- Direct Known Subclasses:
ActorTier
public abstract class ActorCell extends Object implements CellBinding, CellContext
-
-
Constructor Summary
Constructors Constructor Description ActorCell()
-
Method Summary
Modifier and Type Method Description LinkBindingbindDownlink(Downlink downlink)abstract CellAddresscellAddress()abstract CellBindingcellBinding()abstract CellContextcellContext()voidcloseDownlink(LinkBinding link)protected voidcloseLog()protected voidclosePolicy()voiddebug(Object message)Logs a debug-level message.StringedgeName()voiderror(Object message)Logs an error-level message.voidfail(Object message)Logs an fail-level message.voidinfo(Object message)Logs an info-level message.UrimeshUri()voidopenDownlink(LinkBinding link)protected LogopenLog()protected PolicyopenPolicy()voidopenUplink(LinkBinding link)Policypolicy()voidpushDown(Push<?> push)voidpushUp(Push<?> push)voidreportDown(Metric metric)Scheduleschedule()Stagestage()StoreBindingstore()voidtrace(Object message)Logs a trace-level message.voidwarn(Object message)Logs a warn-level message.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface swim.runtime.CellContext
openMetaDownlink
-
-
-
-
Method Detail
-
cellBinding
public abstract CellBinding cellBinding()
-
cellContext
public abstract CellContext cellContext()
-
cellAddress
public abstract CellAddress cellAddress()
- Specified by:
cellAddressin interfaceCellContext
-
edgeName
public String edgeName()
- Specified by:
edgeNamein interfaceCellContext
-
meshUri
public Uri meshUri()
- Specified by:
meshUriin interfaceCellContext
-
policy
public Policy policy()
- Specified by:
policyin interfaceCellContext
-
schedule
public Schedule schedule()
- Specified by:
schedulein interfaceCellContext
-
stage
public Stage stage()
- Specified by:
stagein interfaceCellContext
-
store
public StoreBinding store()
- Specified by:
storein interfaceCellContext
-
openLog
protected Log openLog()
-
closeLog
protected void closeLog()
-
openPolicy
protected Policy openPolicy()
-
closePolicy
protected void closePolicy()
-
bindDownlink
public LinkBinding bindDownlink(Downlink downlink)
- Specified by:
bindDownlinkin interfaceCellContext
-
openDownlink
public void openDownlink(LinkBinding link)
- Specified by:
openDownlinkin interfaceCellContext
-
closeDownlink
public void closeDownlink(LinkBinding link)
- Specified by:
closeDownlinkin interfaceCellContext
-
pushDown
public void pushDown(Push<?> push)
- Specified by:
pushDownin interfaceCellContext
-
reportDown
public void reportDown(Metric metric)
- Specified by:
reportDownin interfaceCellContext
-
openUplink
public void openUplink(LinkBinding link)
- Specified by:
openUplinkin interfaceCellBinding
-
pushUp
public void pushUp(Push<?> push)
- Specified by:
pushUpin interfaceCellBinding
-
trace
public void trace(Object message)
Description copied from interface:LogLogs a trace-level message.
-
debug
public void debug(Object message)
Description copied from interface:LogLogs a debug-level message.
-
info
public void info(Object message)
Description copied from interface:LogLogs an info-level message.
-
warn
public void warn(Object message)
Description copied from interface:LogLogs a warn-level message.
-
error
public void error(Object message)
Description copied from interface:LogLogs an error-level message.
-
-