Package org.apache.jmeter.protocol.jms.client

Examples of org.apache.jmeter.protocol.jms.client.ReceiveSubscriber


  /**
   * Create the ReceiveSubscriber client for the sampler.
   */
  public void initReceiveClient() {
    this.SUBSCRIBER = new ReceiveSubscriber(this.getUseJNDIPropertiesAsBoolean(), this
        .getJNDIInitialContextFactory(), this.getProviderUrl(), this.getConnectionFactory(), this.getTopic(),
        this.getUseAuth(), this.getUsername(), this.getPassword());
    this.SUBSCRIBER.resume();
    ClientPool.addClient(this.SUBSCRIBER);
    log.info("SubscriberSampler.initReceiveClient called");
View Full Code Here

TOP

Related Classes of org.apache.jmeter.protocol.jms.client.ReceiveSubscriber

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.