Struct google_pubsub1::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 field set to true, the system will respond immediately even if it there are no messages available to return in the Pull response. Otherwise, the system may wait (for a bounded amount of time) until at least one message is available, rather than returning no messages.

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

Trait Implementations

impl Default for PullRequest
[src]

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

impl Clone for PullRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PullRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for PullRequest
[src]

Auto Trait Implementations

impl Send for PullRequest

impl Sync for PullRequest