ws snake (cobra simple server) add basic support for unsubscription + subscribe send the proper subscription data + redis client subscription can be cancelled

This commit is contained in:
Benjamin Sergeant
2019-09-05 20:27:01 -07:00
parent 2defe6f597
commit 24b2475b11
8 changed files with 76 additions and 12 deletions

View File

@ -76,6 +76,8 @@ namespace ix
dumpConfig(appConfig);
snake::SnakeServer snakeServer(appConfig);
return snakeServer.run() ? 0 : 1;
snakeServer.runForever();
return 0; // should never reach this
}
}