You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public async Task SendTradeSocketNotification(string socketName, ulong account, string message)
{
// Log the socketname and message
logger.LogDebug($"Socket: {socketName} - {message}");
// Send it out TS{SocketName} and TS{SocketName}+{AccountNumber}
await hubContext.Clients.Group($"TS{socketName}").SendAsync("ReceiveTradeSocketNotification", socketName, message);
await hubContext.Clients.Group($"TS{socketName}+{account}").SendAsync("ReceiveTradeSocketNotification", socketName, message);
}
I'm definteely adding the caller to the group... but I'm never seeing this on the receiving end.. Is there a special way to be able to receive messages back from the siganlr app that receive multiple arguments?
The text was updated successfully, but these errors were encountered:
So in my app I have this..
The text was updated successfully, but these errors were encountered: