Table of Contents

Class Response

Namespace
Bonsai.ZeroMQ
Assembly
Bonsai.ZeroMQ.dll

Represents an operator that creates a response socket for receiving a sequence of request messages and transmitting generated responses.

public class Response : Source<ResponseContext>
Inheritance
Response
Inherited Members

Properties

ConnectionString

Gets or sets a value specifying the endpoints to attach the socket to.

Methods

Generate()

Creates a response socket for receiving an observable sequence of request messages and transmitting generated responses.

Generate(IObservable<NetMQMessage>)

Creates a response socket that returns all received requests and transmits an observable sequence of multiple part response messages.

Generate(IObservable<byte[]>)

Creates a response socket that returns all received requests and transmits an observable sequence of binary-coded response messages.

Generate(IObservable<string>)

Creates a response socket that returns all received requests and transmits an observable sequence of string response messages.

See Also