Example #1
0
        /// <summary>
        /// Method called when new web socket client has connected.
        /// </summary>
        /// <param name="context">Alchemy context for incoming clients</param>
        private void OnConnected(UserContext context)
        {
            var connection = new AlchemyWampConnection(context);

            OnConnected(connection);
        }
Example #2
0
 /// <summary>
 /// Method called when new web socket client has connected.
 /// </summary>
 /// <param name="context">Alchemy context for incoming clients</param>
 private void OnConnected(UserContext context)
 {
     var connection = new AlchemyWampConnection(context);
     OnConnected(connection);
 }