1.0.8 • Published 5 years ago

@xyzblocks/rpc v1.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

RPC

Remote Procedure Call

Build Status

Installation

npm install @xyzblocks/rpc --save

API

InMemoryRpc extends Rpc

Methods

  • close(): Promise<void>
  • connect(rpc: InMemoryRPC): Promise<void>
  • handleIncomingData(data: IRequest | IResponse): Promise<void>
  • send(method: string, params: Array<any>): Promise<any>
  • sendNotification(method: string, params: Array<any>): Promise<void>

IRequest

Properties

  • id: string;
  • jsonrpc: string
  • method: string
  • params: Array<any>

IResponse

Properties

  • error: { code: number; data: any; message: string }
  • id: string
  • jsonrpc: string
  • result: any

Rpc

Methods

  • close(): Promise<void>
  • send(method: string, params: Array<any>): Promise<any>
  • sendNotification(method: string, params: Array<any>): Promise<void>
1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago