io.gatling.jms.client.JmsClient.scala Maven / Gradle / Ivy
/**
* Copyright 2011-2016 GatlingCorp (http://gatling.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.gatling.jms.client
import javax.jms.{ Message, MessageConsumer }
import io.gatling.jms.protocol.JmsProtocol
import io.gatling.jms.request.JmsDestination
object JmsClient {
def apply(protocol: JmsProtocol, destination: JmsDestination, replyDestination: JmsDestination): JmsClient = {
new SimpleJmsClient(
protocol.connectionFactoryName,
destination,
replyDestination,
protocol.url,
protocol.credentials,
protocol.anonymousConnect,
protocol.contextFactory,
protocol.deliveryMode,
protocol.messageMatcher
)
}
}
trait JmsClient {
/**
* Gets a new consumer for the reply queue
*/
def createReplyConsumer(selector: String = null): MessageConsumer
/**
*
* @return the name of the reply destination
*/
def replyDestinationName: String
/**
* Wrapper to send a BytesMessage, returns the message ID of the sent message
*/
def sendBytesMessage(bytes: Array[Byte], props: Map[String, Any]): Message
/**
* Wrapper to send a MapMessage, returns the message ID of the sent message
*
* Note that map must match the javax.jms.MapMessage contract ie: "This method works only
* for the objectified primitive object types (Integer, Double, Long ...), String objects,
* and byte arrays."
*/
def sendMapMessage(map: Map[String, Any], props: Map[String, Any]): Message
/**
* Wrapper to send an ObjectMessage, returns the message ID of the sent message
*/
def sendObjectMessage(o: java.io.Serializable, props: Map[String, Any]): Message
/**
* Wrapper to send a TextMessage, returns the message ID of the sent message
*/
def sendTextMessage(messageText: String, props: Map[String, Any]): Message
def close(): Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy