Package gov.nist.javax.sip.stack.SIPTransaction

Examples of gov.nist.javax.sip.stack.SIPTransaction.LingerTimer


                // Oneshot timer that garbage collects the SeverTransaction
                // after a scheduled amount of time. The linger timer allows
                // the client side of the tx to use the same connection to
                // send an ACK and prevents a race condition for creation
                // of new server tx
                TimerTask myTimer = new LingerTimer();

                sipStack.getTimer().schedule(myTimer,
                        SIPTransactionStack.CONNECTION_LINGER_TIME * 1000);

            } else {
View Full Code Here


                // Oneshot timer that garbage collects the SeverTransaction
                // after a scheduled amount of time. The linger timer allows
                // the client side of the tx to use the same connection to
                // send an ACK and prevents a race condition for creation
                // of new server tx
                TimerTask myTimer = new LingerTimer();

                sipStack.getTimer().schedule(myTimer,
                        SIPTransactionStack.CONNECTION_LINGER_TIME * 1000);

            } else {
View Full Code Here

TOP

Related Classes of gov.nist.javax.sip.stack.SIPTransaction.LingerTimer

Copyright © 2018 www.massapicom. 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.