cc_signalr

Creator: coderz1093

Last updated:

0 purchases

cc_signalr Image
cc_signalr Images

Languages

Categories

Add to Cart

Description:

cc signalr

CC SignalR for Flutter #
CC SignalR is a plugin that provides SignalR support for Flutter applications. This plugin makes it easy to manage SignalR connections and communicate using an event-driven approach.
Installation #
Add the following dependency to your pubspec.yaml file:
dependencies:
cc_signalr: ^1.0.0
copied to clipboard
Then, run the following command in the terminal to load the dependencies:
flutter pub get
copied to clipboard
Usage #
1. Define Connection Options #
Use the init method to add the necessary modules. Define the connection options and configurations directly within this method.
import 'package:cc_signalr/cc_signalr.dart';
void main() {
CCSignalR.init(
connectionOptions: HttpConnectionOptions(
skipNegotiation: true,
transport: HttpTransportType.WebSockets,
logMessageContent: false,
),
signalROptions: CCSignalROptions(
url: "https://example.com/signalrHub",
autoReconnect: true,
hubProtocol: JsonHubProtocol(),
onConnected: (HubConnection connection) async {
print("Connected");
},
onDisconnected: (value) {
print("Disconnected");
},
onReconnected: (value) {
print("Reconnected");
},
),
loggingOptions: CCSignalRLogging(
logEnabled: true,
logLevel: Level.INFO,
),
modules: [
Example(),
],
);
}
copied to clipboard
2. Using Modules #
You can use your example module to receive and manage messages over SignalR.
void main() {
// Other initialization code...

// Start the connection
CCSignalR.connect();

// Subscribe to the module
CCSignalR.getModule<Example>().subscribe();

// Unsubscribe from the module
CCSignalR.getModule<Example>().unsubscribe();
}
copied to clipboard
3. Create Your Own Module #
The HUBModule class is inherited to listen for a specific SignalR message. This class listens for messages coming over SignalR and prints these messages to the console. You can create your own module by defining a class like this:
import 'package:cc_signalr/src/modules/hub_module.dart';

class Example extends HUBModule {
Example() : super("receiveMainPageStream");

@override
void listen(List<Object?>? parameters) {
print("Broadcast : " + parameters.toString());
}
}
copied to clipboard
Example Code #
Below is the complete example code:
void main() {
CCSignalR.init(
connectionOptions: HttpConnectionOptions(
skipNegotiation: true,
transport: HttpTransportType.WebSockets,
logMessageContent: false,
),
signalROptions: CCSignalROptions(
url: "https://example.com/signalrHub",
autoReconnect: true,
hubProtocol: JsonHubProtocol(),
onConnected: (HubConnection connection) async {
String connectionId = await connection.invoke("getConnectionId") as String;
print("Connected : " + connectionId);
},
onDisconnected: (value) {
print("Disconnected");
},
onReconnected: (value) {
print("Reconnected");
},
),
loggingOptions: CCSignalRLogging(
logEnabled: true,
logLevel: Level.INFO,
),
modules: [
Example(),
],
);

CCSignalR.connect();

CCSignalR.getModule<Example>().subscribe();
}
copied to clipboard
Explanation

Inheritance: The Example class is inherited from the HUBModule class. This means that the Example class inherits all the properties and methods of the HUBModule class.
Constructor: The constructor of the Example class calls the constructor of the HUBModule class with the "receiveMainPageStream" parameter. This means that the Example class will listen to the "receiveMainPageStream" message.
listen Method: This method listens for messages coming from SignalR. The parameters parameter contains the content of the message from SignalR, and this content is printed to the console.

Contributing #
If you would like to contribute to this project, please send a pull request or open an issue.
License #
This project is licensed under the MIT License. For more information, see the LICENSE file.

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.