Examples of PseudoXAStompletAcknowledgeableMessageSink


Examples of org.projectodd.stilts.stomplet.container.xa.PseudoXAStompletAcknowledgeableMessageSink

    }

    @Override
    public void onSubscribe(Subscriber subscriber) throws StompException {
        String subscriptionId = subscriber.getSubscriptionId();
        Subscriber xaSubscriber = new SubscriberImpl( subscriber.getSession(), stomplet, subscriptionId, subscriber.getDestination(), subscriber.getParamters(), new PseudoXAStompletAcknowledgeableMessageSink(
                this.resourceManager, subscriber ),
                subscriber.getAckMode() );
        this.subscribers.put( subscriber.getId(), xaSubscriber );
        this.stomplet.onSubscribe( xaSubscriber );
    }
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.