Skip to main content

Interest

Struct Interest 

Source
pub struct Interest {
    pub id: InterestId,
    pub mode: InterestMode,
    pub options: InterestOptions,
    pub wire_expr: Option<WireExpr<'static>>,
    pub ext_qos: QoSType,
    pub ext_tstamp: Option<TimestampType>,
    pub ext_nodeid: NodeIdType,
}
Expand description

The INTEREST message is sent to request the transmission of current and optionally future declarations of a given kind matching a target keyexpr. E.g., an interest could be sent to request the transmission of all current subscriptions matching a/*.

The behaviour of a INTEREST depends on the INTEREST MODE.

E.g., the message flow is the following for an Interest with mode InterestMode::Current:

    A                   B
    |     INTEREST      |
    |------------------>| -- Mode: Current
    |                   |    This is an Interest e.g. for subscriber declarations.
    |                   |
    |  DECL SUBSCRIBER  |
    |<------------------| -- With interest_id field set
    |  DECL SUBSCRIBER  |
    |<------------------| -- With interest_id field set
    |  DECL SUBSCRIBER  |
    |<------------------| -- With interest_id field set
    |                   |
    |     DECL FINAL    |
    |<------------------| -- With interest_id field set
    |                   |

And the message flow is the following for an Interest with mode InterestMode::CurrentFuture:

    A                   B
    |     INTEREST      |
    |------------------>| -- This is a DeclareInterest e.g. for subscriber declarations/undeclarations.
    |                   |
    |  DECL SUBSCRIBER  |
    |<------------------| -- With interest_id field set
    |  DECL SUBSCRIBER  |
    |<------------------| -- With interest_id field set
    |  DECL SUBSCRIBER  |
    |<------------------| -- With interest_id field set
    |                   |
    |     DECL FINAL    |
    |<------------------| -- With interest_id field set
    |                   |
    |  DECL SUBSCRIBER  |
    |<------------------| -- With interest_id field not set
    | UNDECL SUBSCRIBER |
    |<------------------| -- With interest_id field not set
    |                   |
    |        ...        |
    |                   |
    | INTEREST FINAL    |
    |------------------>| -- Mode: Final
    |                   |    This stops the transmission of subscriber declarations/undeclarations.
    |                   |

And the message flow is the following for an Interest with mode InterestMode::Future:

    A                   B
    |     INTEREST      |
    |------------------>| -- This is a DeclareInterest e.g. for subscriber declarations/undeclarations.
    |                   |
    |  DECL SUBSCRIBER  |
    |<------------------| -- With interest_id field not set
    | UNDECL SUBSCRIBER |
    |<------------------| -- With interest_id field not set
    |                   |
    |        ...        |
    |                   |
    | INTEREST FINAL    |
    |------------------>| -- Mode: Final
    |                   |    This stops the transmission of subscriber declarations/undeclarations.
    |                   |
Flags:
- |: Mode           The mode of the interest*
-/
- Z: Extension      If Z==1 then at least one extension is present

7 6 5 4 3 2 1 0
+-+-+-+-+-+-+-+-+
|Z|Mod|INTEREST |
+-+-+-+---------+
~    id:z32     ~
+---------------+
|A|M|N|R|T|Q|S|K|  if Mod!=Final (*)
+---------------+
~ key_scope:z16 ~  if Mod!=Final && R==1
+---------------+
~  key_suffix   ~  if Mod!=Final && R==1 && N==1 -- <u8;z16>
+---------------+
~  [int_exts]   ~  if Z==1
+---------------+

Mode of declaration:
- Mode 0b00: Final
- Mode 0b01: Current
- Mode 0b10: Future
- Mode 0b11: CurrentFuture

(*) - if K==1 then the interest refers to key expressions
    - if S==1 then the interest refers to subscribers
    - if Q==1 then the interest refers to queryables
    - if T==1 then the interest refers to tokens
    - if R==1 then the interest is restricted to the matching key expression, else it is for all key expressions.
    - if N==1 then the key expr has name/suffix. If R==0 then N should be set to 0.
    - if M==1 then key expr mapping is the one declared by the sender, else it is the one declared by the receiver.
              If R==0 then M should be set to 0.
    - if A==1 then the replies SHOULD be aggregated

Fields§

§id: InterestId§mode: InterestMode§options: InterestOptions§wire_expr: Option<WireExpr<'static>>§ext_qos: QoSType§ext_tstamp: Option<TimestampType>§ext_nodeid: NodeIdType

Implementations§

Source§

impl Interest

Source

pub fn options(&self) -> u8

Trait Implementations§

Source§

impl Clone for Interest

Source§

fn clone(&self) -> Interest

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Interest

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Interest

Source§

impl PartialEq for Interest

Source§

fn eq(&self, other: &Interest) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Interest

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsNode<T> for T

Source§

fn as_node(&self) -> &T

Source§

impl<T> AsNodeMut<T> for T

Source§

fn as_node_mut(&mut self) -> &mut T

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V