# README
go-ws-connector
A Go library for managing websocket connections with request-response matching and topic subscriptions, built on gorilla/websocket.
# Functions
No description provided by the author
GetTypedResponseChannels DOES automatically close the returned channels after the response has been received.
GetTypedResponseOnChannels does NOT automatically close the channels passed as parameters after the response has been received.
GetTypedSubscriptionDataChannels DOES automatically close the returned channels when the subscription is closed.
GetTypedSubscriptionDataOnChannels does NOT automatically close the channels passed as parameters when the subscription is closed.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
SendRequest function that wraps the SendRequest method of a connector + the request of typed response channels, all in one call.
# Variables
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Type aliases
Connector generic connector interface, which has all the methods of the ServerConnector, which is the most "restrictive" between the two types of Connector (client and server).
RequestHandlerFunction if the pointer to the responder object is nil, it means that the request sender did not require any responses; handler functions should check this before using the responder.
SubscriptionRequestHandlerFunction Use the function GetTypedSubscriptionRequestChannels to get the channels from which the initial subscription request data (and its updates) can be read.