- java.lang.Object
-
- org.omg.CORBA.portable.ObjectImpl
-
- org.omg.PortableServer._ServantLocatorStub
-
- All Implemented Interfaces:
-
Serializable
,Object
,IDLEntity
,ServantLocator
,ServantLocatorOperations
,ServantManager
,ServantManagerOperations
public class _ServantLocatorStub extends ObjectImpl implements ServantLocator
当POA具有NON_RETAIN策略时,它使用ServantLocator的servant管理器。 因为POA知道这位仆人经理返回的仆人只能用于一个请求,它可以为仆人经理的业务提供额外的信息,仆人经理的一对操作可能会合作做一些不同于ServantActivator的事情。 当POA使用ServantLocator接口,在对preinvoke返回的servant进行操作调用后,POA将在servant管理器上调用postinvoke,传递ObjectId值和Servant值作为参数(等等)。 此功能可用于强制与POA关联的对象的所有请求都由仆人管理器进行调解。
-
-
构造方法摘要
构造方法 Constructor 描述 _ServantLocatorStub()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 String[]
_ids()
检索包含此ObjectImpl
对象支持的存储库标识符的字符串数组。void
postinvoke(byte[] oid, POA adapter, String operation, Object the_cookie, Servant the_servant)
在服务器完成请求时调用此操作。Servant
preinvoke(byte[] oid, POA adapter, String operation, CookieHolder the_cookie)
此操作用于获取将用于处理引起preinvoke调用的请求的servant。-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.omg.CORBA.Object
_create_request, _create_request, _duplicate, _get_domain_managers, _get_interface_def, _get_policy, _hash, _is_a, _is_equivalent, _non_existent, _release, _request, _set_policy_override
-
Methods inherited from class org.omg.CORBA.portable.ObjectImpl
_create_request, _create_request, _duplicate, _get_delegate, _get_domain_managers, _get_interface_def, _get_policy, _hash, _invoke, _is_a, _is_equivalent, _is_local, _non_existent, _orb, _release, _releaseReply, _request, _request, _servant_postinvoke, _servant_preinvoke, _set_delegate, _set_policy_override, equals, hashCode, toString
-
-
-
-
字段详细信息
-
_opsClass
public static final Class _opsClass
-
-
方法详细信息
-
preinvoke
public Servant preinvoke(byte[] oid, POA adapter, String operation, CookieHolder the_cookie) throws ForwardRequest
此操作用于获取将用于处理引起preinvoke调用的请求的servant。- Specified by:
-
preinvoke
在接口ServantLocatorOperations
- 参数
-
oid
- 与请求的对象相关联的对象标识。 -
adapter
- 对象被激活的POA的引用。 -
operation
- 操作名称。 -
the_cookie
- 一个不the_cookie
的值,可以由servant管理器在postinvoke期间使用。 - 结果
- 仆人用于处理传入请求。
- 异常
-
ForwardRequest
- 向ORB指示它负责将当前请求和后续请求传递给异常的forward_reference成员中指出的对象。
-
postinvoke
public void postinvoke(byte[] oid, POA adapter, String operation, Object the_cookie, Servant the_servant)
在服务器完成请求时调用此操作。- Specified by:
-
postinvoke
在接口ServantLocatorOperations
- 参数
-
oid
- 与进行请求的对象oid
的对象标识。 -
adapter
- 对象活动的POA的引用。 -
the_cookie
- 包含由preinvoke设置的数据的不透明值。 -
the_servant
- 引用与对象关联的servant。
-
_ids
public String[] _ids()
描述从类复制:ObjectImpl
检索包含此ObjectImpl
对象支持的存储库标识符的字符串数组。 例如,对于stub,此方法返回有关stub支持的所有接口的信息。- Specified by:
-
_ids
在ObjectImpl
- 结果
-
该
ObjectImpl
实例支持的所有存储库标识的数组
-
-