jp.go.aist.rtm.RTC
Class RtcLifecycleActionListener

java.lang.Object
  extended by jp.go.aist.rtm.RTC.RtcLifecycleActionListener
All Implemented Interfaces:
java.util.Observer

public abstract class RtcLifecycleActionListener
extends java.lang.Object
implements java.util.Observer

RtcLifecycleActionListener class

This class is abstract base class for listener classes that provides callbacks for various events in rtobject.


Constructor Summary
RtcLifecycleActionListener()
           
 
Method Summary
abstract  void operator()
           Virtual Callback function
abstract  void postConfigure(Properties prop)
           postConfigure callback function
abstract  void postCreate(RTObject_impl rtobj)
           postCreate callback function
abstract  void postInitialize()
           postInitialize callback function
abstract  void preConfigure(Properties prop)
           preConfigure callback function
abstract  void preCreate(java.lang.String args)
           preCreate callback function
abstract  void preInitialize()
           preInitialize callback function
 void update(java.util.Observable o, java.lang.Object obj)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RtcLifecycleActionListener

public RtcLifecycleActionListener()
Method Detail

update

public void update(java.util.Observable o,
                   java.lang.Object obj)
Specified by:
update in interface java.util.Observer

operator

public abstract void operator()
Virtual Callback function

This is a the Callback function for RtcLifecycleActionListener.


preCreate

public abstract void preCreate(java.lang.String args)
preCreate callback function


postCreate

public abstract void postCreate(RTObject_impl rtobj)
postCreate callback function


preConfigure

public abstract void preConfigure(Properties prop)
preConfigure callback function


postConfigure

public abstract void postConfigure(Properties prop)
postConfigure callback function


preInitialize

public abstract void preInitialize()
preInitialize callback function


postInitialize

public abstract void postInitialize()
postInitialize callback function