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
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CustomDestination
  2. Serializable
  3. Product
  4. Equals
  5. Destination
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CustomDestination(name: String, create: Function[Session, jakarta.jms.Destination])

    Java API

  2. new CustomDestination(name: String, create: (Session) => jakarta.jms.Destination)

Value Members

  1. val create: (Session) => jakarta.jms.Destination
    Definition Classes
    CustomDestinationDestination
  2. val name: String
    Definition Classes
    CustomDestinationDestination
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product