implicit final class VertxEventBusOps extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- VertxEventBusOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new VertxEventBusOps(target: EventBus)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
requestL[T](address: String, message: AnyRef, options: DeliveryOptions): Task[Message[T]]
Like
Object, Handler)
but specifyingoptions
that can be used to configure the delivery.Like
Object, Handler)
but specifyingoptions
that can be used to configure the delivery.- address
the address to send it to
- message
the message body, may be
null
- options
delivery options
- returns
a reference to this, so the API can be used fluently
-
def
requestL[T](address: String, message: AnyRef): Task[Message[T]]
Sends a message and and specify a
replyHandler
that will be called if the recipient subsequently replies to the message.Sends a message and and specify a
replyHandler
that will be called if the recipient subsequently replies to the message.The message will be delivered to at most one of the handlers registered to the address.
- address
the address to send it to
- message
the message body, may be
null
- returns
a reference to this, so the API can be used fluently
- val target: EventBus
-
def
toString(): String
- Definition Classes
- Any