Example #1
0
        public void NonFixedPathLeave()
        {
            var pool = new Channel.Pool();
            var session = new Session();

            pool.Join(new Channel.Path("world.map"), session);
            pool.Leave(new Channel.Path("world.*"), session);
        }
Example #2
0
        public void NonFixedPathJoin()
        {
            var pool = new Channel.Pool();

            pool.Join(new Channel.Path("world.*"), new Session());
        }