本文整理汇总了Java中com.sun.corba.se.spi.oa.ObjectAdapter.enter方法的典型用法代码示例。如果您正苦于以下问题:Java ObjectAdapter.enter方法的具体用法?Java ObjectAdapter.enter怎么用?Java ObjectAdapter.enter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.corba.se.spi.oa.ObjectAdapter
的用法示例。
在下文中一共展示了ObjectAdapter.enter方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getCachedInfo
import com.sun.corba.se.spi.oa.ObjectAdapter; //导入方法依赖的package包/类
protected synchronized OAInvocationInfo getCachedInfo()
{
if (!servantIsLocal)
throw wrapper.servantMustBeLocal() ;
if (cachedInfo == null) {
ObjectAdapter oa = oaf.find( oaid ) ;
cachedInfo = oa.makeInvocationInfo( objectId ) ;
// InvocationInfo must be pushed before calling getInvocationServant
orb.pushInvocationInfo( cachedInfo ) ;
try {
oa.enter( );
oa.getInvocationServant( cachedInfo ) ;
} catch (ForwardException freq) {
throw wrapper.illegalForwardRequest( freq ) ;
} catch( OADestroyed oades ) {
// This is an error since no user of this implementation
// should ever throw this exception
throw wrapper.adapterDestroyed( oades ) ;
} finally {
oa.returnServant( );
oa.exit( );
orb.popInvocationInfo() ;
}
}
return cachedInfo ;
}
示例2: servantEnter
import com.sun.corba.se.spi.oa.ObjectAdapter; //导入方法依赖的package包/类
private OAInvocationInfo servantEnter( ObjectAdapter oa ) throws OADestroyed
{
oa.enter() ;
OAInvocationInfo info = oa.makeInvocationInfo( objectId ) ;
orb.pushInvocationInfo( info ) ;
return info ;
}
示例3: getServantWithPI
import com.sun.corba.se.spi.oa.ObjectAdapter; //导入方法依赖的package包/类
protected java.lang.Object getServantWithPI(CorbaMessageMediator request,
ObjectAdapter objectAdapter,
byte[] objectId, ObjectKeyTemplate oktemp, String operation)
throws OADestroyed
{
try {
if (orb.subcontractDebugFlag) {
dprint(".getServantWithPI->");
}
// Prepare Portable Interceptors for a new server request
// and invoke receive_request_service_contexts. The starting
// point may throw a SystemException or ForwardException.
orb.getPIHandler().initializeServerPIInfo(request, objectAdapter,
objectId, oktemp);
orb.getPIHandler().invokeServerPIStartingPoint();
objectAdapter.enter() ;
// This must be set just after the enter so that exceptions thrown by
// enter do not cause
// the exception reply to pop the thread stack and do an extra oa.exit.
if (request != null)
request.setExecuteReturnServantInResponseConstructor(true);
java.lang.Object servant = getServant(objectAdapter, objectId,
operation);
// Note: we do not know the MDI on a null servant.
// We only end up in that situation if _non_existent called,
// so that the following handleNullServant call does not throw an
// exception.
String mdi = "unknown" ;
if (servant instanceof NullServant)
handleNullServant(operation, (NullServant)servant);
else
mdi = objectAdapter.getInterfaces(servant, objectId)[0] ;
orb.getPIHandler().setServerPIInfo(servant, mdi);
if (((servant != null) &&
!(servant instanceof org.omg.CORBA.DynamicImplementation) &&
!(servant instanceof org.omg.PortableServer.DynamicImplementation)) ||
(SpecialMethod.getSpecialMethod(operation) != null)) {
orb.getPIHandler().invokeServerPIIntermediatePoint();
}
return servant ;
} finally {
if (orb.subcontractDebugFlag) {
dprint(".getServantWithPI<-");
}
}
}