Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/rimbu/channel/custom/rpc-proxy/rpc-proxy.ts

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
import * as rimbu from "https://deno.land/x/rimbu@1.2.0/channel/custom/rpc-proxy/rpc-proxy.ts";

Interfaces

A remote procedure call proxy that can be used to perform methods on a remote object as though it is accessible locally.

Defines the static RpcProxy API.

Type Aliases

The RpcProxy error type

An RPC call path, consisting of an array of path parts

A part of an RPC call path, which can be either:

  • a string indicating an object property/method
  • an array of data indicating a function call with the array as arguments

Utility type to transform an object/API with potentially asynchronous calls into a synchronous one. This is used to allow RPC calls to act as though they are synchronous, but have only the resulting return type be asynchronous.