pub trait IssueApiServer<BlockHash, AccountId, H256, IssueRequest>: Sized + Send + Sync + 'static {
    // Required methods
    fn get_issue_requests(
        &self,
        account_id: AccountId,
        at: Option<BlockHash>
    ) -> RpcResult<Vec<H256>>;
    fn get_vault_issue_requests(
        &self,
        vault_id: AccountId,
        at: Option<BlockHash>
    ) -> RpcResult<Vec<H256>>;

    // Provided method
    fn into_rpc(self) -> RpcModule<Self>
       where BlockHash: Send + Sync + 'static + DeserializeOwned,
             AccountId: Send + Sync + 'static + DeserializeOwned,
             H256: Send + Sync + 'static + Serialize,
             IssueRequest: Send + Sync + 'static { ... }
}
Expand description

Server trait implementation for the IssueApi RPC API.

Required Methods§

source

fn get_issue_requests( &self, account_id: AccountId, at: Option<BlockHash> ) -> RpcResult<Vec<H256>>

source

fn get_vault_issue_requests( &self, vault_id: AccountId, at: Option<BlockHash> ) -> RpcResult<Vec<H256>>

Provided Methods§

source

fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, AccountId: Send + Sync + 'static + DeserializeOwned, H256: Send + Sync + 'static + Serialize, IssueRequest: Send + Sync + 'static,

Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule.

Implementors§

source§

impl<C, Block, AccountId, H256, IssueRequest> IssueApiServer<<Block as Block>::Hash, AccountId, H256, IssueRequest> for Issue<C, Block>where Block: BlockT, C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>, C::Api: IssueRuntimeApi<Block, AccountId, H256, IssueRequest>, AccountId: Codec, H256: Codec, IssueRequest: Codec,