1#[macro_use]
2extern crate serde_derive;
3#[macro_use]
4extern crate lazy_static;
5extern crate log;
6
7pub use thruster_socketio_proc::*;
8
9pub mod redis_pubsub;
10mod rooms;
11mod sid;
12mod socketio;
13mod socketio_context;
14mod socketio_message;
15mod socketio_upgrade;
17
18pub use rooms::{get_sockets_for_room, get_sockets_number_for_room, print_sockets_for_room, get_rooms_count};
19pub use socketio::{adapter, broadcast, broadcast_binary, SocketIOAdapter, SocketIOSocket as SocketIO};
20pub use socketio_context::SocketIOContext;
21pub use socketio_upgrade::{handle_io, handle_io_with_capacity};