io.gatling.jms.protocol.JmsProtocol.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2011-2024 GatlingCorp (https://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.protocol
import javax.jms.ConnectionFactory
import scala.concurrent.duration.FiniteDuration
import io.gatling.commons.model.Credentials
import io.gatling.core.CoreComponents
import io.gatling.core.config.GatlingConfiguration
import io.gatling.core.protocol.{ Protocol, ProtocolKey }
import io.gatling.jms.client.JmsConnectionPool
object JmsProtocol {
val JmsProtocolKey: ProtocolKey[JmsProtocol, JmsComponents] = new ProtocolKey[JmsProtocol, JmsComponents] {
def protocolClass: Class[io.gatling.core.protocol.Protocol] = classOf[JmsProtocol].asInstanceOf[Class[io.gatling.core.protocol.Protocol]]
def defaultProtocolValue(configuration: GatlingConfiguration): JmsProtocol =
throw new IllegalStateException("Can't provide a default value for JmsProtocol")
def newComponents(coreComponents: CoreComponents): JmsProtocol => JmsComponents = {
val jmsConnectionPool = new JmsConnectionPool(coreComponents.actorSystem, coreComponents.statsEngine, coreComponents.clock, coreComponents.configuration)
coreComponents.actorSystem.registerOnTermination {
jmsConnectionPool.close()
}
jmsProtocol => new JmsComponents(jmsProtocol, jmsConnectionPool)
}
}
}
final case class JmsProtocol(
connectionFactory: ConnectionFactory,
credentials: Option[Credentials],
deliveryMode: Int,
replyTimeout: Option[FiniteDuration],
listenerThreadCount: Int,
messageMatcher: JmsMessageMatcher
) extends Protocol {
type Components = JmsComponents
}