web3mq_websocket

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

web3mq websocket

web3mq_websocket #
A lightware websocket tool to communicate with web3mq.
Installation #
To use web3mq_websocket, add it to your pubspec.yaml file:
dependencies:
web3mq_websocket: ^0.1.0-dev.1
copied to clipboard
Features #

Reconnect automumaccly.
Customisable data model.
Completely methods for web3mq RESTful api.

Usage #
final websocket = Web3MQWebSocketManager(
baseUrl: 'endpoint', reconnectionMonitorInterval: 20);

// lisnten the new message stream.
websocket.messageStream.listen((event) {});

// lisnten the new notification stream.
websocket.notificationStream.listen((event) {});

// lisnten the connection status stream.
websocket.connectionStatusStream.listen((event) {});

/// listen the sending status stream.
websocket.messageUpdateStream.listen((event) {});

// replace with your own user
await websocket.connect(WebSocketUser('userId', 'sessionKey'));
websocket.sendText('text', 'topic');

websocket.sendText('text', 'topic',
threadId: '', cipherSuite: '', needStore: false, extraData: {});
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.