Class Pull
Represents an operator that creates a pull socket for receiving a sequence of messages as part of the push-pull pattern.
Inherited Members
Namespace: Bonsai.ZeroMQ
Assembly: Bonsai.ZeroMQ.dll
Syntax
public class Pull : Source<NetMQMessage>
Properties
| Improve this Doc View SourceConnectionString
Gets or sets a value specifying the endpoints to attach the socket to.
Declaration
[TypeConverter(typeof(ConnectionStringConverter))]
public string ConnectionString { get; set; }
Property Value
Type | Description |
---|---|
String |
Methods
| Improve this Doc View SourceGenerate()
Creates a pull socket for receiving an observable sequence of multiple part messages as part of the push-pull pattern.
Declaration
public override IObservable<NetMQMessage> Generate()
Returns
Type | Description |
---|---|
IObservable<NetMQ.NetMQMessage> | An observable sequence of NetMQ.NetMQMessage objects representing all multiple part messages received from the pull socket. |
Overrides
Bonsai.Source<NetMQ.NetMQMessage>.Generate()