本文整理汇总了Java中org.globus.wsrf.NotifyCallback类的典型用法代码示例。如果您正苦于以下问题:Java NotifyCallback类的具体用法?Java NotifyCallback怎么用?Java NotifyCallback使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
NotifyCallback类属于org.globus.wsrf包,在下文中一共展示了NotifyCallback类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: subscribe
import org.globus.wsrf.NotifyCallback; //导入依赖的package包/类
/**
* Call this method if you want to subscribe and provide a NotifyCallback to handle the
* messages
*/
public org.oasis.wsn.SubscribeResponse subscribe(QName qname, NotifyCallback callback) throws RemoteException, ContainerException, MalformedURIException {
synchronized (portTypeMutex) {
configureStubSecurity((Stub) portType, "subscribe");
if (consumer == null) {
// Create client side notification consumer
consumer = org.globus.wsrf.NotificationConsumerManager.getInstance();
consumer.startListening();
consumerEPR = consumer.createNotificationConsumer(callback);
}
org.oasis.wsn.Subscribe params = new org.oasis.wsn.Subscribe();
params.setUseNotify(Boolean.TRUE);
params.setConsumerReference(consumerEPR);
org.oasis.wsn.TopicExpressionType topicExpression = new org.oasis.wsn.TopicExpressionType();
topicExpression.setDialect(org.globus.wsrf.WSNConstants.SIMPLE_TOPIC_DIALECT);
topicExpression.setValue(qname);
params.setTopicExpression(topicExpression);
return portType.subscribe(params);
}
}
示例2: getConsumer
import org.globus.wsrf.NotifyCallback; //导入依赖的package包/类
/** returns an EPR to a newly created consumer, such that notifications
sent to this consumer will be delivered to the callback. */
public EndpointReferenceType getConsumer(NotifyCallback callback)
{
EndpointReferenceType consumerEPR;
try {
consumerEPR = consumerManager.createNotificationConsumer(callback);
} catch(ResourceException re) {
logger.error("Exception getting a consumer");
return null;
}
return consumerEPR;
}