当前位置: 首页>>代码示例>>Java>>正文


Java IORInterceptor类代码示例

本文整理汇总了Java中org.omg.PortableInterceptor.IORInterceptor的典型用法代码示例。如果您正苦于以下问题:Java IORInterceptor类的具体用法?Java IORInterceptor怎么用?Java IORInterceptor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


IORInterceptor类属于org.omg.PortableInterceptor包,在下文中一共展示了IORInterceptor类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: adapterManagerStateChanged

import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
void adapterManagerStateChanged( int managerId, short newState )
{
    if (enabled) {
        IORInterceptor[] interceptors =
            (IORInterceptor[])interceptorList.getInterceptors(
            InterceptorList.INTERCEPTOR_TYPE_IOR );
        int size = interceptors.length;

        for( int i = (size - 1); i >= 0; i-- ) {
            try {
                IORInterceptor interceptor = interceptors[i];
                if (interceptor instanceof IORInterceptor_3_0) {
                    IORInterceptor_3_0 interceptor30 = (IORInterceptor_3_0)interceptor ;
                    interceptor30.adapter_manager_state_changed( managerId,
                        newState );
                }
            } catch (Exception exc) {
                // No-op: ignore exception in this case
            }
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:InterceptorInvoker.java

示例2: adapterStateChanged

import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
void adapterStateChanged( ObjectReferenceTemplate[] templates,
    short newState )
{
    if (enabled) {
        IORInterceptor[] interceptors =
            (IORInterceptor[])interceptorList.getInterceptors(
            InterceptorList.INTERCEPTOR_TYPE_IOR );
        int size = interceptors.length;

        for( int i = (size - 1); i >= 0; i-- ) {
            try {
                IORInterceptor interceptor = interceptors[i];
                if (interceptor instanceof IORInterceptor_3_0) {
                    IORInterceptor_3_0 interceptor30 = (IORInterceptor_3_0)interceptor ;
                    interceptor30.adapter_state_changed( templates, newState );
                }
            } catch (Exception exc) {
                // No-op: ignore exception in this case
            }
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:InterceptorInvoker.java

示例3: add_ior_interceptor_with_policy

import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
public void add_ior_interceptor_with_policy (
    IORInterceptor interceptor, Policy[] policies )
    throws DuplicateName, PolicyError
{
    // XXX ignore policies for now
    add_ior_interceptor( interceptor ) ;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:ORBInitInfoImpl.java

示例4: add_ior_interceptor

import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
/**
 * This operation is used to add an IOR Interceptor to
 * the list of IOR Interceptors.
 * <p>
 * If an IOR Interceptor has already been registered
 * with this Interceptor's name, DuplicateName is raised.
 */
public void add_ior_interceptor (
    IORInterceptor interceptor )
    throws DuplicateName
{
    checkStage();
    if( interceptor == null ) nullParam();

    orb.getPIHandler().register_interceptor( interceptor,
        InterceptorList.INTERCEPTOR_TYPE_IOR );
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:18,代码来源:ORBInitInfoImpl.java

示例5: getIORInterceptors

import org.omg.PortableInterceptor.IORInterceptor; //导入依赖的package包/类
public IORInterceptor[] getIORInterceptors()
{
  IORInterceptor[] iIor = new IORInterceptor[ m_ior.size() ];
  for (int i = 0; i < iIor.length; i++)
    {
      iIor [ i ] = (IORInterceptor) m_ior.get(i);
    }
  return iIor;
}
 
开发者ID:vilie,项目名称:javify,代码行数:10,代码来源:Registrator.java


注:本文中的org.omg.PortableInterceptor.IORInterceptor类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。