IMQRPCRequest interface

Wire format of a remote call, produced by a client and consumed by a service.

Signature:

export interface IMQRPCRequest extends JsonObject 

Extends: JsonObject

Remarks

from, method and args are always present; metadata is absent — not null — when the caller passed none. The whole structure is JSON-serialized, so any undefined inside it is dropped in transit.

Properties

Property

Modifiers

Type

Description

args

any[]

Positional arguments for the method, applied in order.

from

string

Name of the caller's own queue — the call's reply address.

metadata?

IMQMetadata

(Optional) Optional metadata attached by the caller.

method

string

Name of the service method to invoke.

Read this page as plain markdown — no HTML, no navigation. For pasting into an LLM, or for an agent to fetch.