123456789101112131415161718192021 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- /** Defines the type of a Hub Message. */
- export var MessageType;
- (function (MessageType) {
- /** Indicates the message is an Invocation message and implements the {@link @microsoft/signalr.InvocationMessage} interface. */
- MessageType[MessageType["Invocation"] = 1] = "Invocation";
- /** Indicates the message is a StreamItem message and implements the {@link @microsoft/signalr.StreamItemMessage} interface. */
- MessageType[MessageType["StreamItem"] = 2] = "StreamItem";
- /** Indicates the message is a Completion message and implements the {@link @microsoft/signalr.CompletionMessage} interface. */
- MessageType[MessageType["Completion"] = 3] = "Completion";
- /** Indicates the message is a Stream Invocation message and implements the {@link @microsoft/signalr.StreamInvocationMessage} interface. */
- MessageType[MessageType["StreamInvocation"] = 4] = "StreamInvocation";
- /** Indicates the message is a Cancel Invocation message and implements the {@link @microsoft/signalr.CancelInvocationMessage} interface. */
- MessageType[MessageType["CancelInvocation"] = 5] = "CancelInvocation";
- /** Indicates the message is a Ping message and implements the {@link @microsoft/signalr.PingMessage} interface. */
- MessageType[MessageType["Ping"] = 6] = "Ping";
- /** Indicates the message is a Close message and implements the {@link @microsoft/signalr.CloseMessage} interface. */
- MessageType[MessageType["Close"] = 7] = "Close";
- })(MessageType || (MessageType = {}));
- //# sourceMappingURL=IHubProtocol.js.map
|