RTI Connext Java API  Version 6.1.2
Package com.rti.connext.requestreply

Support for the request-reply communication pattern. More...

Classes

class  Replier
 Allows receiving requests and sending replies. More...
 
interface  ReplierListener
 Called when a com.rti.connext.requestreply.Replier<TReq,TRep> has new available requests. More...
 
class  ReplierParams
 Contains the parameters for creating a com.rti.connext.requestreply.Replier<TReq,TRep>. More...
 
class  Requester
 Allows sending requests and receiving replies. More...
 
class  RequesterParams
 Contains the parameters for creating a com.rti.connext.requestreply.Requester<TReq,TRep> More...
 
class  SimpleReplier
 A callback-based replier. More...
 
interface  SimpleReplierListener
 The listener called by a SimpleReplier. More...
 
class  SimpleReplierParams
 Contains the parameters for creating a com.rti.connext.requestreply.SimpleReplier<TReq,TRep> More...
 

Detailed Description

Support for the request-reply communication pattern.

There are two basic entities that enable this pattern:

  • com.rti.connext.requestreply.Requester<TReq,TRep>
  • com.rti.connext.requestreply.Replier<TReq,TRep> (and a simpler version com.rti.connext.requestreply.SimpleReplier<TReq,TRep>)

This functionality is built on top of RTI Connext.

A Requester publishes a request topic and subscribes to a reply topic. A Replier subscribes to the request topic and publishes the reply topic.

The Request-Reply communication pattern is only available with RTI Connext Messaging.

You can find more information about this pattern in the "Request-Reply Communication Pattern" part of the User's Manual.

See also
Request-Reply Examples.