Package org.apache.savan.eventing.client

Examples of org.apache.savan.eventing.client.SubscriptionStatus


    eventingClient.unsubscribe(ID);
    Thread.sleep(1000);   //TODO remove if not sequired
  }
 
  private void doGetStatus (String ID) throws Exception {
    SubscriptionStatus status  = eventingClient.getSubscriptionStatus(ID);
    Thread.sleep(1000);   //TODO remove if not sequired
   
    String statusValue = status.getExpirationValue();
    System.out.println("Status of the subscriber '" + ID +"' is" + statusValue);
  }
View Full Code Here

TOP

Related Classes of org.apache.savan.eventing.client.SubscriptionStatus

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.