mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-08-18 17:57:20 +08:00
140 lines
4.1 KiB
TypeScript
140 lines
4.1 KiB
TypeScript
export declare const RpcTypeId_IValueEnumerable: -1;
|
|
export declare const RpcTypeId_IValueEnumerator: -2;
|
|
export declare const RpcTypeId_IValueArray: -3;
|
|
export declare const RpcTypeId_IValueList: -4;
|
|
export declare const RpcTypeId_IValueObservableList: -5;
|
|
export declare const RpcTypeId_IValueDictionary: -6;
|
|
export declare const RpcTypeId_IValueReadonlyList: -7;
|
|
|
|
export declare const RpcMethodId_IValueEnumerable_CreateEnumerator: -1;
|
|
export declare const RpcMethodId_IValueEnumerator_Next: -2;
|
|
export declare const RpcMethodId_IValueEnumerator_GetCurrent: -3;
|
|
export declare const RpcMethodId_IValueReadonlyList_GetCount: -4;
|
|
export declare const RpcMethodId_IValueReadonlyList_Get: -5;
|
|
export declare const RpcMethodId_IValueList_Set: -6;
|
|
export declare const RpcMethodId_IValueList_Add: -7;
|
|
export declare const RpcMethodId_IValueList_Insert: -8;
|
|
export declare const RpcMethodId_IValueList_RemoveAt: -9;
|
|
export declare const RpcMethodId_IValueList_Clear: -10;
|
|
export declare const RpcMethodId_IValueReadonlyList_Contains: -11;
|
|
export declare const RpcMethodId_IValueReadonlyList_IndexOf: -12;
|
|
export declare const RpcMethodId_IValueReadonlyDictionary_GetCount: -13;
|
|
export declare const RpcMethodId_IValueReadonlyDictionary_Get: -14;
|
|
export declare const RpcMethodId_IValueDictionary_Set: -15;
|
|
export declare const RpcMethodId_IValueDictionary_Remove: -16;
|
|
export declare const RpcMethodId_IValueDictionary_Clear: -17;
|
|
export declare const RpcMethodId_IValueReadonlyDictionary_ContainsKey: -18;
|
|
export declare const RpcMethodId_IValueReadonlyDictionary_GetKeys: -19;
|
|
export declare const RpcMethodId_IValueReadonlyDictionary_GetValues: -20;
|
|
export declare const RpcMethodId_IValueArray_Resize: -21;
|
|
|
|
export declare const RpcEventId_IValueObservableList_ItemChanged: -1;
|
|
|
|
export interface system_RpcObjectReference
|
|
{
|
|
clientId: number;
|
|
objectId: number;
|
|
typeId: number;
|
|
}
|
|
|
|
export interface system_RpcException
|
|
{
|
|
message: string;
|
|
}
|
|
|
|
export interface system_RpcByvalReturnValue<T>
|
|
{
|
|
value: T;
|
|
slot: number;
|
|
}
|
|
|
|
export type RpcEventExceptionMap =
|
|
| null
|
|
| [number, system_RpcException][]
|
|
;
|
|
|
|
export interface MessageBase {
|
|
rpcRequestId: number;
|
|
sourceClientId: number;
|
|
}
|
|
|
|
export interface BroadcastRequest extends MessageBase {
|
|
}
|
|
|
|
export interface DirectRequest extends MessageBase {
|
|
targetClientId: number;
|
|
}
|
|
|
|
export interface IObjectOps_InvokeMethod_Request<T> extends DirectRequest
|
|
{
|
|
rpcMethod: "Request:IObjectOps_InvokeMethod";
|
|
ref: system_RpcObjectReference;
|
|
methodId: number;
|
|
arguments: T[];
|
|
}
|
|
|
|
export interface IObjectOps_InvokeMethod_Response<T> extends DirectRequest
|
|
{
|
|
rpcMethod: "Response:IObjectOps_InvokeMethod";
|
|
response: T | system_RpcByvalReturnValue<T>;
|
|
}
|
|
|
|
export interface IObjectOps_EndInvokeMethod_Request extends DirectRequest
|
|
{
|
|
rpcMethod: "Request:IObjectOps_EndInvokeMethod";
|
|
slot: number;
|
|
}
|
|
|
|
export interface IObjectOps_EndInvokeMethod_Response extends DirectRequest
|
|
{
|
|
rpcMethod: "Response:IObjectOps_EndInvokeMethod";
|
|
}
|
|
|
|
export interface IObjectOps_ObjectHold_Request extends DirectRequest
|
|
{
|
|
rpcMethod: "Request:IObjectOps_ObjectHold";
|
|
ref: system_RpcObjectReference;
|
|
remoteClientId: number;
|
|
hold: boolean;
|
|
}
|
|
|
|
export interface IObjectOps_ObjectHold_Response extends DirectRequest
|
|
{
|
|
rpcMethod: "Response:IObjectOps_ObjectHold";
|
|
}
|
|
|
|
export interface IObjectEventOps_InvokeEvent_Request<T> extends BroadcastRequest
|
|
{
|
|
rpcMethod: "Request:IObjectEventOps_InvokeEvent";
|
|
ref: system_RpcObjectReference;
|
|
eventId: number;
|
|
arguments: T[];
|
|
}
|
|
|
|
export interface IRpcDispatcher_DeclareRemoteService_Request extends BroadcastRequest
|
|
{
|
|
rpcMethod: "Request:IRpcDispatcher_DeclareRemoteService";
|
|
ref: system_RpcObjectReference;
|
|
}
|
|
|
|
export interface Broadcast_Response extends DirectRequest
|
|
{
|
|
rpcMethod: "Response:Broadcast_Response";
|
|
response?: RpcEventExceptionMap;
|
|
}
|
|
|
|
export type Request<T> =
|
|
| IObjectOps_InvokeMethod_Request<T>
|
|
| IObjectOps_EndInvokeMethod_Request
|
|
| IObjectOps_ObjectHold_Request
|
|
| IObjectEventOps_InvokeEvent_Request<T>
|
|
| IRpcDispatcher_DeclareRemoteService_Request
|
|
;
|
|
|
|
export type Response<T> =
|
|
| IObjectOps_InvokeMethod_Response<T>
|
|
| IObjectOps_EndInvokeMethod_Response
|
|
| IObjectOps_ObjectHold_Response
|
|
| Broadcast_Response
|
|
;
|