Package com.ericsson.ssa.sip.persistence

Examples of com.ericsson.ssa.sip.persistence.ReplicationUnitOfWork.unlock()


     */
    public void endPipelineInvoke() {
        ReplicationUnitOfWork uow =
            ReplicationUnitOfWork.getThreadLocalUnitOfWork();
        if (uow != null) {
            uow.unlock();
        } else {
            throw new IllegalStateException(
                "Missing Unit-of-work when there should be one");
        }
    }
View Full Code Here


            notifySessionWillPassivate();           
        } finally {
            // Unlock UOW, but don't save it (see IT 1114). If any changes
            // were made to the SAS, they will be included in the serialized
            // representation of the SAS that is going to be migrated
            unitOfWork.unlock();
        }
    }

    /**
     * Passivates this SipApplicationSession.
View Full Code Here

                sasTimer.cancel();
            }
           
        } finally {
            // Unlock UOW, but don't save it (see IT 1114)
            unitOfWork.unlock();
        }
    }
   
    @Override
    public boolean activate() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.