Java Code Examples for com.sun.corba.se.spi.oa.ObjectAdapter#returnServant()
The following examples show how to use
com.sun.corba.se.spi.oa.ObjectAdapter#returnServant() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CorbaServerRequestDispatcherImpl.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
private void releaseServant(ObjectAdapter objectAdapter) { try { if (orb.subcontractDebugFlag) { dprint(".releaseServant->"); } if (objectAdapter == null) { if (orb.subcontractDebugFlag) { dprint(".releaseServant: null object adapter"); } return ; } try { objectAdapter.returnServant(); } finally { objectAdapter.exit(); orb.popInvocationInfo() ; } } finally { if (orb.subcontractDebugFlag) { dprint(".releaseServant<-"); } } }
Example 2
Source File: CorbaServerRequestDispatcherImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 6 votes |
private void releaseServant(ObjectAdapter objectAdapter) { try { if (orb.subcontractDebugFlag) { dprint(".releaseServant->"); } if (objectAdapter == null) { if (orb.subcontractDebugFlag) { dprint(".releaseServant: null object adapter"); } return ; } try { objectAdapter.returnServant(); } finally { objectAdapter.exit(); orb.popInvocationInfo() ; } } finally { if (orb.subcontractDebugFlag) { dprint(".releaseServant<-"); } } }
Example 3
Source File: CorbaServerRequestDispatcherImpl.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
private void releaseServant(ObjectAdapter objectAdapter) { try { if (orb.subcontractDebugFlag) { dprint(".releaseServant->"); } if (objectAdapter == null) { if (orb.subcontractDebugFlag) { dprint(".releaseServant: null object adapter"); } return ; } try { objectAdapter.returnServant(); } finally { objectAdapter.exit(); orb.popInvocationInfo() ; } } finally { if (orb.subcontractDebugFlag) { dprint(".releaseServant<-"); } } }
Example 4
Source File: CorbaServerRequestDispatcherImpl.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
private void releaseServant(ObjectAdapter objectAdapter) { try { if (orb.subcontractDebugFlag) { dprint(".releaseServant->"); } if (objectAdapter == null) { if (orb.subcontractDebugFlag) { dprint(".releaseServant: null object adapter"); } return ; } try { objectAdapter.returnServant(); } finally { objectAdapter.exit(); orb.popInvocationInfo() ; } } finally { if (orb.subcontractDebugFlag) { dprint(".releaseServant<-"); } } }
Example 5
Source File: CorbaServerRequestDispatcherImpl.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
private void releaseServant(ObjectAdapter objectAdapter) { try { if (orb.subcontractDebugFlag) { dprint(".releaseServant->"); } if (objectAdapter == null) { if (orb.subcontractDebugFlag) { dprint(".releaseServant: null object adapter"); } return ; } try { objectAdapter.returnServant(); } finally { objectAdapter.exit(); orb.popInvocationInfo() ; } } finally { if (orb.subcontractDebugFlag) { dprint(".releaseServant<-"); } } }
Example 6
Source File: CorbaServerRequestDispatcherImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
private void releaseServant(ObjectAdapter objectAdapter) { try { if (orb.subcontractDebugFlag) { dprint(".releaseServant->"); } if (objectAdapter == null) { if (orb.subcontractDebugFlag) { dprint(".releaseServant: null object adapter"); } return ; } try { objectAdapter.returnServant(); } finally { objectAdapter.exit(); orb.popInvocationInfo() ; } } finally { if (orb.subcontractDebugFlag) { dprint(".releaseServant<-"); } } }
Example 7
Source File: CorbaServerRequestDispatcherImpl.java From hottub with GNU General Public License v2.0 | 6 votes |
private void releaseServant(ObjectAdapter objectAdapter) { try { if (orb.subcontractDebugFlag) { dprint(".releaseServant->"); } if (objectAdapter == null) { if (orb.subcontractDebugFlag) { dprint(".releaseServant: null object adapter"); } return ; } try { objectAdapter.returnServant(); } finally { objectAdapter.exit(); orb.popInvocationInfo() ; } } finally { if (orb.subcontractDebugFlag) { dprint(".releaseServant<-"); } } }
Example 8
Source File: CorbaServerRequestDispatcherImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
private void releaseServant(ObjectAdapter objectAdapter) { try { if (orb.subcontractDebugFlag) { dprint(".releaseServant->"); } if (objectAdapter == null) { if (orb.subcontractDebugFlag) { dprint(".releaseServant: null object adapter"); } return ; } try { objectAdapter.returnServant(); } finally { objectAdapter.exit(); orb.popInvocationInfo() ; } } finally { if (orb.subcontractDebugFlag) { dprint(".releaseServant<-"); } } }
Example 9
Source File: ServantCacheLocalCRDBase.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
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 ; }
Example 10
Source File: ServantCacheLocalCRDBase.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
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 ; }
Example 11
Source File: POALocalCRDImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
private void servantExit( ObjectAdapter oa ) { try { oa.returnServant(); } finally { oa.exit() ; orb.popInvocationInfo() ; } }
Example 12
Source File: POALocalCRDImpl.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
private void servantExit( ObjectAdapter oa ) { try { oa.returnServant(); } finally { oa.exit() ; orb.popInvocationInfo() ; } }
Example 13
Source File: POALocalCRDImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
private void servantExit( ObjectAdapter oa ) { try { oa.returnServant(); } finally { oa.exit() ; orb.popInvocationInfo() ; } }
Example 14
Source File: ServantCacheLocalCRDBase.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
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 ; }
Example 15
Source File: ServantCacheLocalCRDBase.java From JDKSourceCode1.8 with MIT License | 5 votes |
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 ; }
Example 16
Source File: POALocalCRDImpl.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
private void servantExit( ObjectAdapter oa ) { try { oa.returnServant(); } finally { oa.exit() ; orb.popInvocationInfo() ; } }
Example 17
Source File: POALocalCRDImpl.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
private void servantExit( ObjectAdapter oa ) { try { oa.returnServant(); } finally { oa.exit() ; orb.popInvocationInfo() ; } }
Example 18
Source File: POALocalCRDImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
private void servantExit( ObjectAdapter oa ) { try { oa.returnServant(); } finally { oa.exit() ; orb.popInvocationInfo() ; } }
Example 19
Source File: ServantCacheLocalCRDBase.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
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 ; }
Example 20
Source File: POALocalCRDImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
private void servantExit( ObjectAdapter oa ) { try { oa.returnServant(); } finally { oa.exit() ; orb.popInvocationInfo() ; } }