- java.lang.Object
-
- org.omg.PortableServer.Servant
-
- org.omg.PortableServer.ServantActivatorPOA
-
- All Implemented Interfaces:
-
InvokeHandler
,ServantActivatorOperations
,ServantManagerOperations
public abstract class ServantActivatorPOA extends Servant implements ServantActivatorOperations, InvokeHandler
当POA具有RETAIN策略时,它使用ServantActivator的仆人管理器。
-
-
构造方法摘要
构造方法 Constructor 描述 ServantActivatorPOA()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 String[]
_all_interfaces(POA poa, byte[] objectId)
由ORB用于从仆人获取完整的类型信息。OutputStream
_invoke(String $method, InputStream in, ResponseHandler $rh)
由ORB调用,向仆人发出请求。ServantActivator
_this()
ServantActivator
_this(ORB orb)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from class org.omg.PortableServer.Servant
_default_POA, _get_delegate, _get_interface_def, _is_a, _non_existent, _object_id, _orb, _poa, _set_delegate, _this_object, _this_object
-
Methods inherited from interface org.omg.PortableServer.ServantActivatorOperations
etherealize, incarnate
-
-
-
-
方法详细信息
-
_invoke
public OutputStream _invoke(String $method, InputStream in, ResponseHandler $rh)
描述从接口InvokeHandler
复制由ORB调用,向仆人发出请求。 ORB传递方法名称,包含编组参数的InputStream,以及仆人用于构造正确答复的ResponseHandler。 此方法只能抛出CORBA SystemException。 该方法必须返回由包含编组答复的ResponseHandler创建的OutputStream。 仆人在方法调用的生命周期之前不能保留对ResponseHandler的引用。 仆人行为定义如下:1.确定正确的方法,并从InputStream中解组参数。
2.调用方法实现。
3.如果没有用户异常,请使用ResponseHandler创建正常回复。
4.如果发生用户异常,请使用ResponseHandler创建异常回复。
5.Massars回复ResponseHandler返回的OutputStream。
6.将OutputStream返回给ORB。
- Specified by:
-
_invoke
在接口InvokeHandler
- 参数
-
$method
- 方法名称。 -
in
- 包含编组参数的InputStream
。 -
$rh
- 仆人用于构建正确答复的ResponseHandler
- 结果
-
由ResponseHandler创建的
OutputStream
,其中包含编组的回复
-
_all_interfaces
public String[] _all_interfaces(POA poa, byte[] objectId)
描述从类别复制Servant
由ORB用于从仆人获取完整的类型信息。- Specified by:
-
_all_interfaces
在Servant
- 参数
-
poa
- 与仆人关联的POA。 -
objectId
- 是与该仆人相关联的对象的ID。 - 结果
- 对象的类型信息列表。
-
_this
public ServantActivator _this()
-
_this
public ServantActivator _this(ORB orb)
-
-