[][src]Struct libzmq::Gather

pub struct Gather { /* fields omitted */ }

A Gather socket is used to receive pipelined messages.

Messages are fair-queued from among all connected Scatter sockets.

Summary of Characteristics

CharacteristicValue
Compatible peer socketsScatter
DirectionUnidirectional
Send/receive patternReceive only
Outgoing routing strategyRound-robin
Incoming routing strategyFair-queued
Action in mute stateBlock

Example

use libzmq::{prelude::*, *};

let addr_a = InprocAddr::new_unique();
let addr_b = InprocAddr::new_unique();

// Create our two load balancers.
let lb_a = ScatterBuilder::new()
    .bind(&addr_a)
    .build()?;
let lb_b = ScatterBuilder::new()
    .bind(&addr_b)
    .build()?;

// Connect the worker to both load balancers.
let worker = GatherBuilder::new()
    .connect(&[addr_a, addr_b])
    .recv_hwm(1)
    .build()?;

for _ in 0..100 {
    lb_a.try_send("a")?;
}
for _ in 0..100 {
    lb_b.try_send("b")?;
}

// The messages received should be fair-queues from
// our two load balancers.
let mut msg = Msg::new();
for i in 0..200 {
    worker.try_recv(&mut msg)?;
    if i % 2 == 0 {
        assert_eq!(msg.to_str(), Ok("a"));
    } else {
        assert_eq!(msg.to_str(), Ok("b"));
    }
}

Implementations

impl Gather[src]

pub fn new() -> Result<Self, Error>[src]

pub fn with_ctx(handle: CtxHandle) -> Result<Self, Error>[src]

Create a Gather socket associated with a specific context from a CtxHandle.

Returned Error Variants

pub fn ctx(&self) -> CtxHandle[src]

Returns a handle to the context of the socket.

Trait Implementations

impl Clone for Gather[src]

impl Debug for Gather[src]

impl Eq for Gather[src]

impl<'a> From<&'a Gather> for Pollable<'a>[src]

impl Heartbeating for Gather[src]

impl PartialEq<Gather> for Gather[src]

impl RecvMsg for Gather[src]

impl Send for Gather[src]

impl Socket for Gather[src]

impl Sync for Gather[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,