pub struct UpdateBuilder<'agent> {
pub effective_canister_id: Principal,
pub canister_id: Principal,
pub method_name: String,
pub arg: Vec<u8>,
pub ingress_expiry_datetime: Option<u64>,
/* private fields */
}
Expand description
An Update Request Builder.
This makes it easier to do update calls without actually passing all arguments or specifying if you want to wait or not.
Fields§
§effective_canister_id: Principal
The effective canister ID of the destination.
canister_id: Principal
The principal ID of the canister being called.
method_name: String
The name of the canister method being called.
arg: Vec<u8>
The argument blob to be passed to the method.
ingress_expiry_datetime: Option<u64>
The Unix timestamp that the request will expire at.
Implementations§
source§impl<'agent> UpdateBuilder<'agent>
impl<'agent> UpdateBuilder<'agent>
sourcepub fn new(
agent: &'agent Agent,
canister_id: Principal,
method_name: String,
) -> Self
pub fn new( agent: &'agent Agent, canister_id: Principal, method_name: String, ) -> Self
Creates a new update builder with an agent for a particular canister method.
sourcepub fn with_effective_canister_id(self, canister_id: Principal) -> Self
pub fn with_effective_canister_id(self, canister_id: Principal) -> Self
Sets the effective canister ID of the destination.
sourcepub fn with_arg<A: Into<Vec<u8>>>(self, arg: A) -> Self
pub fn with_arg<A: Into<Vec<u8>>>(self, arg: A) -> Self
Sets the argument blob to pass to the canister. For most canisters this should be a Candid-serialized tuple.
sourcepub fn expire_at(self, time: impl Into<OffsetDateTime>) -> Self
pub fn expire_at(self, time: impl Into<OffsetDateTime>) -> Self
Sets ingress_expiry_datetime to the provided timestamp, at nanosecond precision.
sourcepub fn expire_after(self, duration: Duration) -> Self
pub fn expire_after(self, duration: Duration) -> Self
Sets ingress_expiry_datetime to min(now, 4min)
.
sourcepub async fn call_and_wait(self) -> Result<Vec<u8>, AgentError>
pub async fn call_and_wait(self) -> Result<Vec<u8>, AgentError>
Make an update call. This will call request_status on the RequestId in a loop and return the response as a byte vector.
sourcepub fn call(self) -> UpdateCall<'agent> ⓘ
pub fn call(self) -> UpdateCall<'agent> ⓘ
Make an update call. This will return a RequestId. The RequestId should then be used for request_status (most likely in a loop).
sourcepub fn sign(self) -> Result<SignedUpdate, AgentError>
pub fn sign(self) -> Result<SignedUpdate, AgentError>
Sign a update call. This will return a signed::SignedUpdate
which contains all fields of the update and the signed update in CBOR encoding