final case class CustomDestination(name: String, create: (Session) => jakarta.jms.Destination) extends Destination with Product with Serializable
Destination factory to create specific destinations to send to/receive from.
- Source
- Destinations.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CustomDestination
- Serializable
- Product
- Equals
- Destination
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CustomDestination(name: String, create: Function[Session, jakarta.jms.Destination])
Java API
- new CustomDestination(name: String, create: (Session) => jakarta.jms.Destination)
Value Members
- val create: (Session) => jakarta.jms.Destination
- Definition Classes
- CustomDestination → Destination
- val name: String
- Definition Classes
- CustomDestination → Destination
- def productElementNames: Iterator[String]
- Definition Classes
- Product