本文整理汇总了Java中org.omg.PortableInterceptor.ACTIVE类的典型用法代码示例。如果您正苦于以下问题:Java ACTIVE类的具体用法?Java ACTIVE怎么用?Java ACTIVE使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ACTIVE类属于org.omg.PortableInterceptor包,在下文中一共展示了ACTIVE类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getORTState
import org.omg.PortableInterceptor.ACTIVE; //导入依赖的package包/类
public short getORTState()
{
switch (state.value()) {
case State._HOLDING : return HOLDING.value ;
case State._ACTIVE : return ACTIVE.value ;
case State._INACTIVE : return INACTIVE.value ;
case State._DISCARDING : return DISCARDING.value ;
default : return NON_EXISTENT.value ;
}
}
示例2: activate
import org.omg.PortableInterceptor.ACTIVE; //导入依赖的package包/类
/**
* <code>activate</code>
* <b>Spec: pages 3-14 thru 3-18</b>
*/
public synchronized void activate()
throws org.omg.PortableServer.POAManagerPackage.AdapterInactive
{
explicitStateChange = true ;
if (debug) {
ORBUtility.dprint( this,
"Calling activate on POAManager " + this ) ;
}
try {
if ( state.value() == State._INACTIVE )
throw new org.omg.PortableServer.POAManagerPackage.AdapterInactive();
// set the state to ACTIVE
state = State.ACTIVE;
pihandler.adapterManagerStateChanged( myId, getORTState() ) ;
// Notify any invocations that were waiting because the previous
// state was HOLDING, as well as notify any threads that were waiting
// inside hold_requests() or discard_requests().
notifyWaiters();
} finally {
if (debug) {
ORBUtility.dprint( this,
"Exiting activate on POAManager " + this ) ;
}
}
}
示例3: getState
import org.omg.PortableInterceptor.ACTIVE; //导入依赖的package包/类
public short getState()
{
return ACTIVE.value ;
}