Examples of checkState()


Examples of org.smpp.Session.checkState()

        Object object = sessionFactory.makeObject();
        assertTrue(object instanceof Session);
        Session session = (Session) object;
        assertTrue(session.isOpened());
        assertTrue(session.isBound());
        session.checkState(Session.STATE_TRANSMITTER);
        assertEquals(20*1000, session.getConnection().getReceiveTimeout());
    }

    /**
     * Verify that {@link PoolableSessionFactory#makeObject} fails if it cannot
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.