Interface: IncomingRequest<T>
Defined in: packages/microservices/src/interfaces/packet.interface.ts:2
An incoming request packet (request-response pattern).
Type Parameters
| Type Parameter | Default type |
|---|---|
T | unknown |
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
data | T | Request payload. | packages/microservices/src/interfaces/packet.interface.ts:8 |
id | string | Unique request identifier used to correlate the response. | packages/microservices/src/interfaces/packet.interface.ts:4 |
pattern | string | Record<string, unknown> | Pattern that identifies the handler on the server side. | packages/microservices/src/interfaces/packet.interface.ts:6 |