Struct google_pubsub1_beta2::PullRequest [] [src]

pub struct PullRequest {
    pub return_immediately: Option<bool>,
    pub max_messages: Option<i32>,
}

Request for the Pull method.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

If this is specified as true the system will respond immediately even if it is not able to return a message in the Pull response. Otherwise the system is allowed to wait until at least one message is available rather than returning no messages. The client may cancel the request if it does not wish to wait any longer for the response.

The maximum number of messages returned for this request. The Pub/Sub system may return fewer than the number specified.

Trait Implementations

impl Debug for PullRequest
[src]

Formats the value using the given formatter.

impl Clone for PullRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PullRequest
[src]

Returns the "default value" for a type. Read more

impl RequestValue for PullRequest
[src]