Package org.cipango.server.session.scope

Examples of org.cipango.server.session.scope.ScopedTimer


       
    public class Timer implements TimerService
    {
        public ServletTimer createTimer(SipApplicationSession session, long delay, boolean isPersistent, Serializable info)
        {
            return new ScopedTimer(((AppSessionIf) session).getAppSession(), delay, isPersistent, info);
        }
View Full Code Here


            return new ScopedTimer(((AppSessionIf) session).getAppSession(), delay, isPersistent, info);
        }

        public ServletTimer createTimer(SipApplicationSession session, long delay, long period, boolean fixedDelay, boolean isPersistent, Serializable info)
        {
          return new ScopedTimer(((AppSessionIf) session).getAppSession(), delay, period, fixedDelay, isPersistent, info);
        }
View Full Code Here

TOP

Related Classes of org.cipango.server.session.scope.ScopedTimer

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.