modulepackage
0.1.3
Repository: https://github.com/guru-golang/signalr-go.git
Documentation: pkg.go.dev
# README
Azure SignalR Client for Golang
Quickly and easily build real-time communications into your web application
With Azure SignalR Service, adding real-time communications to your web application is as simple as provisioning a service—no need to be a real-time communications guru!
Getting Started
Installing the library
Use go get
to acquire and install from source. We recommend using Go modules if you can.
For more information on modules, see the Go modules wiki.
With go get:
go get -u github.com/guru-golang/signalr-go
If you need to install Go, follow the official instructions
Examples
Find up-to-date examples and documentation on godoc.org.
# Functions
ClientWithName configures a SignalR client to use a specific name for addressing the client individually
If a client name is provided, a random name will be assigned to the client and can be accessed via `client.GetName()`.
NewClient constructs a new client given a set of construction options.
NewInvocationMessage creates a new `InvocationMessage` from a target method name and arguments.
NewNotifiedHandler creates a new `NotifiedHandler` for responding to SignalR invocations.
ParseConnectionString will parse the SignalR connection string from the Azure Portal.
# Structs
No description provided by the author
No description provided by the author
ParsedConnString is the structure extracted from a SignalR connection string.
No description provided by the author