MCPcopy Create free account

hub / github.com/stomp-js/stompjs / functions

Functions486 in github.com/stomp-js/stompjs

Methodclose
* Closes the connection.
esm6/types.d.ts:126
Methodclose
(code, reason)
spec/helpers/wrapper-ws.js:56
Methodclose
(code?: number, reason?: string)
spec/helpers-src/wrapper-ws.ts:67
Methodcommit
()
bundles/stomp.umd.js:934
Methodcommit
(e)
bundles/stomp.umd.min.js:1
Methodcommit
()
esm6/stomp-handler.js:357
Methodcommit
* Commits a transaction. * * It is strongly recommended to call [commit]{@link ITransaction#commit} on * the transaction object returne
esm6/client.js:817
Methodcommit
()
src/stomp-handler.ts:523
Methodconnect
* Available for backward compatibility, please shift to using [Client#activate]{@link Client#activate}. * * **Deprecated**
bundles/stomp.umd.js:2011
Methodconnect
(...e)
bundles/stomp.umd.min.js:1
Methodconnect
* Available for backward compatibility, please shift to using [Client#activate]{@link Client#activate}. * * **Deprecated** * * The
esm6/compatibility/compat-client.js:97
Methodconnected
()
bundles/stomp.umd.js:596
Methodconnected
* Indicates whether there is an active connection to the STOMP broker. * * Usage: * ```javascript * if (client.con
bundles/stomp.umd.js:1056
Methodconnected
()
bundles/stomp.umd.min.js:1
Methodconnected
()
bundles/stomp.umd.min.js:1
Methodconnected
()
esm6/stomp-handler.js:19
Methodconnected
* Indicates whether there is an active connection to the STOMP broker. * * Usage: * ```javascript * if (client.connected) { *
esm6/client.js:78
Methodconnected
* Indicates whether there is an active connection to the STOMP broker. * * Usage: * ```javascript * if (client.connected) { * console
src/client.ts:439
Methodconnected
()
src/stomp-handler.ts:85
MethodconnectedVersion
()
bundles/stomp.umd.js:593
MethodconnectedVersion
* The version of the STOMP protocol negotiated with the server during connection. * * This is a **read-only** property and reflects
bundles/stomp.umd.js:1072
MethodconnectedVersion
()
bundles/stomp.umd.min.js:1
MethodconnectedVersion
()
bundles/stomp.umd.min.js:1
MethodconnectedVersion
()
esm6/stomp-handler.js:16
MethodconnectedVersion
* The version of the STOMP protocol negotiated with the server during connection. * * This is a **read-only** property and reflects the nego
esm6/client.js:94
MethodconnectedVersion
* The version of the STOMP protocol negotiated with the server during connection. * * This is a **read-only** property and reflects the negotiat
src/client.ts:606
MethodconnectedVersion
()
src/stomp-handler.ts:80
Methodconstructor
* Frame constructor. `command`, `headers` and `body` are available as properties. * * @internal
bundles/stomp.umd.js:78
Methodconstructor
(onFrame, onIncomingPing)
bundles/stomp.umd.js:277
Methodconstructor
(_interval, _strategy = exports.TickerStrategy.Interval, _debug)
bundles/stomp.umd.js:477
Methodconstructor
* Takes an array of versions, typical elements '1.2', '1.1', or '1.0' * * You will be creating an instance of this class if you want
bundles/stomp.umd.js:548
Methodconstructor
(_client, _webSocket, config)
bundles/stomp.umd.js:599
Methodconstructor
* Constructs a new STOMP client instance. * * The constructor initializes default values and sets up no-op callbacks for all events.
bundles/stomp.umd.js:1114
Methodconstructor
(client)
bundles/stomp.umd.js:1900
Methodconstructor
* Available for backward compatibility, please shift to using {@link Client} * and [Client#webSocketFactory]{@link Client#webSocketFactory}.
bundles/stomp.umd.js:1935
Methodconstructor
(e)
bundles/stomp.umd.min.js:1
Methodconstructor
(e,t)
bundles/stomp.umd.min.js:1
Methodconstructor
(t,s=e.TickerStrategy.Interval,n)
bundles/stomp.umd.min.js:1
Methodconstructor
(e)
bundles/stomp.umd.min.js:1
Methodconstructor
(e,t,s)
bundles/stomp.umd.min.js:1
Methodconstructor
(t={})
bundles/stomp.umd.min.js:1
Methodconstructor
(e)
bundles/stomp.umd.min.js:1
Methodconstructor
(e)
bundles/stomp.umd.min.js:1
Methodconstructor
(_client, _webSocket, config)
esm6/stomp-handler.js:22
Methodconstructor
* Constructs a new STOMP client instance. * * The constructor initializes default values and sets up no-op callbacks for all events. *
esm6/client.js:136
Methodconstructor
(onFrame, onIncomingPing)
esm6/parser.js:60
Methodconstructor
(_interval, _strategy = TickerStrategy.Interval, _debug)
esm6/ticker.js:3
Methodconstructor
* Takes an array of versions, typical elements '1.2', '1.1', or '1.0' * * You will be creating an instance of this class if you want to over
esm6/versions.js:13
Methodconstructor
* Frame constructor. `command`, `headers` and `body` are available as properties. * * @internal
esm6/frame-impl.js:32
Methodconstructor
* Available for backward compatibility, please shift to using {@link Client} * and [Client#webSocketFactory]{@link Client#webSocketFactory}.
esm6/compatibility/compat-client.js:21
Methodconstructor
(client)
esm6/compatibility/heartbeat-info.js:7
Methodconstructor
* Frame constructor. `command`, `headers` and `body` are available as properties. * * @internal
src/frame-impl.ts:58
Methodconstructor
* Constructs a new STOMP client instance. * * The constructor initializes default values and sets up no-op callbacks for all events. * Config
src/client.ts:684
Methodconstructor
( public onFrame: (rawFrame: IRawFrameType) => void, public onIncomingPing: () => void, )
src/parser.ts:76
Methodconstructor
( private readonly _interval: number, private readonly _strategy = TickerStrategy.Interval, privat
src/ticker.ts:14
Methodconstructor
* Takes an array of versions, typical elements '1.2', '1.1', or '1.0' * * You will be creating an instance of this class if you want to override
src/versions.ts:35
Methodconstructor
( private _client: Client, public _webSocket: IStompSocket, config: IStomptHandlerConfig, )
src/stomp-handler.ts:100
Methodconstructor
(private client: CompatClient)
src/compatibility/heartbeat-info.ts:9
Methodconstructor
* Available for backward compatibility, please shift to using {@link Client} * and [Client#webSocketFactory]{@link Client#webSocketFactory}. *
src/compatibility/compat-client.ts:29
Methodconstructor
(ws)
spec/helpers/wrapper-ws.js:9
Methodconstructor
(public ws: WebSocket)
spec/helpers-src/wrapper-ws.ts:24
Methoddisconnect
* Available for backward compatibility, please shift to using [Client#deactivate]{@link Client#deactivate}. * * **Deprecated**
bundles/stomp.umd.js:2038
Methoddisconnect
(e,t={})
bundles/stomp.umd.min.js:1
Methoddisconnect
* Available for backward compatibility, please shift to using [Client#deactivate]{@link Client#deactivate}. * * **Deprecated** * *
esm6/compatibility/compat-client.js:124
MethoddisconnectHeaders
* Allows customization of the disconnection headers. * * Any changes made during an active session will also be applied immediately.
bundles/stomp.umd.js:1033
MethoddisconnectHeaders
()
bundles/stomp.umd.min.js:1
MethoddisconnectHeaders
* Allows customization of the disconnection headers. * * Any changes made during an active session will also be applied immediately. *
esm6/client.js:55
MethoddisconnectHeaders
* Allows customization of the disconnection headers. * * Any changes made during an active session will also be applied immediately. * * E
src/client.ts:326
MethodforceDisconnect
()
bundles/stomp.umd.js:798
MethodforceDisconnect
()
esm6/stomp-handler.js:221
MethodforceDisconnect
()
src/stomp-handler.ts:351
Methodheartbeat
* Available for backward compatibility, renamed to [Client#heartbeatIncoming]{@link Client#heartbeatIncoming} * [Client#heartbeatOutgoing]{@l
bundles/stomp.umd.js:2141
Methodheartbeat
()
bundles/stomp.umd.min.js:1
Methodheartbeat
* Available for backward compatibility, renamed to [Client#heartbeatIncoming]{@link Client#heartbeatIncoming} * [Client#heartbeatOutgoing]{@link
esm6/compatibility/compat-client.js:227
Methodheartbeat
* Available for backward compatibility, renamed to [Client#heartbeatIncoming]{@link Client#heartbeatIncoming} * [Client#heartbeatOutgoing]{@link Cl
src/compatibility/compat-client.ts:255
Methodi
bundles/stomp.umd.min.js:1
Methodincoming
()
bundles/stomp.umd.js:1909
Methodincoming
()
bundles/stomp.umd.min.js:1
Methodincoming
()
esm6/compatibility/heartbeat-info.js:16
Methodincoming
()
src/compatibility/heartbeat-info.ts:19
FunctionincomingPingTest
()
spec/unit/heart-beat.spec.js:64
Functionlength
spec/unit/append-missing-null-on-incoming.spec.js:33
Methodmarshall
* Serialize a STOMP frame as per STOMP standards, suitable to be sent to the STOMP broker. * * @internal
bundles/stomp.umd.js:192
Methodmarshall
(e)
bundles/stomp.umd.min.js:1
Methodmarshall
* Serialize a STOMP frame as per STOMP standards, suitable to be sent to the STOMP broker. * * @internal
esm6/frame-impl.js:146
FunctionmyCloseEventCallback
()
spec/unit/compatibility/parse-connect.spec.js:11
FunctionmyConnectCallback
()
spec/unit/compatibility/parse-connect.spec.js:3
FunctionmyErrorCallback
()
spec/unit/compatibility/parse-connect.spec.js:7
Methodnack
(messageId, subscriptionId, headers = {})
bundles/stomp.umd.js:969
Methodnack
(e,t,s={})
bundles/stomp.umd.min.js:1
Methodnack
* Rejects a message (negative acknowledgment). Like acknowledgments, this should * typically be done by calling [nack]{@link IMessage#nack} direc
esm6/client.js:887
FunctionnoOp
()
bundles/stomp.umd.js:12
FunctionnoOp
()
esm6/augment-websocket.js:6
FunctionnoOp
()
src/augment-websocket.ts:11
MethodnoOp
()
bundles/stomp.umd.js:1313
MethodnoOp
()
esm6/client.js:335
MethodnoOp
()
src/client.ts:686
MethodnoOp
()
spec/helpers/wrapper-ws.js:11
MethodnoOp
()
spec/helpers-src/wrapper-ws.ts:25
FunctiononMessage
(message)
spec/unit/ack.spec.js:28
← previousnext →301–400 of 486, ranked by callers