Trait dash_sdk::platform::transition::put_document::PutDocument

source ·
pub trait PutDocument<S: Signer> {
    // Required methods
    fn put_to_platform<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        sdk: &'life1 Sdk,
        document_type: DocumentType,
        document_state_transition_entropy: [u8; 32],
        identity_public_key: IdentityPublicKey,
        signer: &'life2 S,
        settings: Option<PutSettings>,
    ) -> Pin<Box<dyn Future<Output = Result<StateTransition, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
    fn wait_for_response<'life0, 'life1, 'async_trait>(
        &'life0 self,
        sdk: &'life1 Sdk,
        state_transition: StateTransition,
        data_contract: Arc<DataContract>,
    ) -> Pin<Box<dyn Future<Output = Result<Document, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn put_to_platform_and_wait_for_response<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        sdk: &'life1 Sdk,
        document_type: DocumentType,
        document_state_transition_entropy: [u8; 32],
        identity_public_key: IdentityPublicKey,
        data_contract: Arc<DataContract>,
        signer: &'life2 S,
    ) -> Pin<Box<dyn Future<Output = Result<Document, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
}
Expand description

A trait for putting a document to platform

Required Methods§

source

fn put_to_platform<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, sdk: &'life1 Sdk, document_type: DocumentType, document_state_transition_entropy: [u8; 32], identity_public_key: IdentityPublicKey, signer: &'life2 S, settings: Option<PutSettings>, ) -> Pin<Box<dyn Future<Output = Result<StateTransition, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Puts a document on platform setting settings to None sets default connection behavior

source

fn wait_for_response<'life0, 'life1, 'async_trait>( &'life0 self, sdk: &'life1 Sdk, state_transition: StateTransition, data_contract: Arc<DataContract>, ) -> Pin<Box<dyn Future<Output = Result<Document, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Waits for the response of a state transition after it has been broadcast

source

fn put_to_platform_and_wait_for_response<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, sdk: &'life1 Sdk, document_type: DocumentType, document_state_transition_entropy: [u8; 32], identity_public_key: IdentityPublicKey, data_contract: Arc<DataContract>, signer: &'life2 S, ) -> Pin<Box<dyn Future<Output = Result<Document, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Puts an identity on platform and waits for the confirmation proof

Implementors§

source§

impl<S: Signer> PutDocument<S> for Document