Uses of Interface
things.thinger.SystemInterface

Packages that use SystemInterface
things.thing   
things.thinger   
things.thinger.kernel.basic   
things.thinger.service.actor   
things.thinger.service.command   
things.thinger.service.command.local   
things.thinger.service.httptool   
 

Uses of SystemInterface in things.thing
 

Fields in things.thing declared as SystemInterface
protected  SystemInterface BASE.mySystemInterface
           
 

Methods in things.thing with parameters of type SystemInterface
 void MODULE.init(SystemInterface si)
          Initialize this MODULE.
 void THING.init(SystemInterface si, ControlInterface ci, ExpressionInterface ei, ExpressionInterface parent)
          Initialize this THING.
 void BASE.systemInit(SystemInterface si)
          Initialize system data.
 

Constructors in things.thing with parameters of type SystemInterface
Cluster(SystemInterface si, ExpressionInterface parentInterface)
          Construct a cluster not owned by a THING.
 

Uses of SystemInterface in things.thinger
 

Subinterfaces of SystemInterface in things.thinger
 interface SystemSuperInterface
          System Interface used by internal systems.
 

Uses of SystemInterface in things.thinger.kernel.basic
 

Classes in things.thinger.kernel.basic that implement SystemInterface
 class KernelBasic
          Implements a system interface for the basic Kernel.
 class KernelBasicBase
          Implements underlying Kernel functionality.
 

Constructors in things.thinger.kernel.basic with parameters of type SystemInterface
KernalBasic_LoggingExpressor(Logger logger, SystemInterface si)
          Constructor.
 

Uses of SystemInterface in things.thinger.service.actor
 

Fields in things.thinger.service.actor declared as SystemInterface
protected  SystemInterface ActorServiceBase.si
          The System Interface
protected  SystemInterface ActorClientBase.si
          The System Interface
 

Methods in things.thinger.service.actor with parameters of type SystemInterface
protected  void ActorServiceBase.init_service(SystemInterface si, ActorServiceContextInterface context)
          Init the Service.
 void ActorServiceThread.initialize(SystemInterface si, java.net.Socket sock)
          Initialize the lightweight service thread.
 void ActorClientBase.start(java.lang.String host, java.lang.String port, java.lang.String serviceClass, SystemInterface si)
          Start a session.
 

Uses of SystemInterface in things.thinger.service.command
 

Methods in things.thinger.service.command that return SystemInterface
 SystemInterface Command.GET_SYSTEM_INTERFACE()
          Get the system interface.
 SystemInterface CommandResponder.getSystemInterface()
          Get a system interface.
 

Uses of SystemInterface in things.thinger.service.command.local
 

Methods in things.thinger.service.command.local that return SystemInterface
 SystemInterface LocalCommandResponder.getSystemInterface()
          Get a system interface.
 

Constructors in things.thinger.service.command.local with parameters of type SystemInterface
LocalCommandResponder(Entity<LocalCommandInfo> originalCommand, Conduit responseConduit, WhoAmI serviceId, SystemInterface si)
          Construct.
 

Uses of SystemInterface in things.thinger.service.httptool
 

Fields in things.thinger.service.httptool declared as SystemInterface
protected  SystemInterface PageManager.si
          The system interface.
 SystemInterface HttpToolServiceContext.si
           
protected  SystemInterface ActionManager.si
          The system interface.
 SystemInterface Action.si
          Working variables.
 

Methods in things.thinger.service.httptool with parameters of type SystemInterface
 ActionResult Action.execute(ThingsPropertyView parameters, ThingsPropertyView tags, SystemInterface si)
          Call this, not process.
 Head ActionIzer.head(ThingsPropertyView parameters, ThingsPropertyView tags, SystemInterface si)
          Overload this if you want to manage HEAD processing on your own.
 Head Action.head(ThingsPropertyView parameters, ThingsPropertyView tags, SystemInterface si)
          Overload this if you want to manage HEAD processing on your own.
 void ServeManager.init(SystemInterface si)
          Initialize the manager.
 void PageManager.init(SystemInterface si)
          Initialize the manager.
 void ActionManager.init(SystemInterface si)
          Initialize the manager.
 

Constructors in things.thinger.service.httptool with parameters of type SystemInterface
HttpToolServiceContext(WhoAmI id, HttpToolService ownerService, java.net.Socket link, SystemInterface si, java.lang.String serveRoot)
          Contructor.
 



Things.