You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3.0 KiB
3.0 KiB
Rocket.Chat.RealTime.API.Abstraction
Abstraction for Utilizing Rocket.Chat's Realtime API Methods with RxJS
Installation
npm install --save rocket.chat.realtime.api.rxjs
Usage
import { RealTimeAPI } from "rocket.chat.realtime.api.rxjs";
const realTimeAPI = new RealTimeAPI("wss://demo.rocket.chat/websocket");
// Provide, URL to the Rocket.Chat's Realtime API.
realTimeAPI.connectToServer();
// Connects to the RealTime API
realTimeAPI.keepAlive();
// Responds "pong" to the "ping" message sent by the Realtime API. To keep the connection alive.
...
...
// Use any of the methods implmented in the package.
Methods
Methods | Functionality |
---|---|
connectToServer() | Connects to the RealTime API. |
keepAlive() | Responds "pong" to the "ping" message sent by the Realtime API. To keep the connection alive. |
login(username, password) | Returns Observable to the Result/Response from the RealTime API. |
loginWithAuthToken(authToken) | Returns Observable to the Result/Response from the RealTime API. |
loginWithOAuth(credToken, credSecret) | Returns Observable to the Result/Response from the RealTime API. |
callMethod(methodName, ...params) | Returns Observalble to the Result of Method Call from Rocket.Chat Realtime API |
sendMessage(jsonObject) | Sends the JSON Object to the API Server |
onMessage( message => console.log(message) ) | Subscribes to the Messages sent from the server |
onError( error => console.error(error) ) | Subscribes to the Errors. |
onCompletion( () => console.info("Complete") ) | Subscribes to Completion on the Websocket Connection |
subscribe(messageHandler, errorHandler, completionHandler) | Subscribes to All 3, messages, errors and completion |
getObservable() | Returns observable of the WebSocket Connection to the RealTime API |