Examples of addMessageReceiverListener()


Examples of org.springframework.integration.smpp.session.ExtendedSmppSessionAdaptingDelegate.addMessageReceiverListener()

    ExtendedSmppSession extendedSmppSession = smppSessionFactoryBean.getObject();
    Assert.assertTrue(extendedSmppSession instanceof ExtendedSmppSessionAdaptingDelegate);

    ExtendedSmppSessionAdaptingDelegate es = (ExtendedSmppSessionAdaptingDelegate) extendedSmppSession;
    Assert.assertNotNull("the factoried object should not be null", extendedSmppSession);
    es.addMessageReceiverListener(new MessageReceiverListener() {
      public void onAcceptDeliverSm(DeliverSm deliverSm) throws ProcessRequestException {
        logger.debug("in onAcceptDeliverSm");
      }

      public void onAcceptAlertNotification(AlertNotification alertNotification) {
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.