2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-10 23:52:20 +00:00

More improvements in the readme.

This commit is contained in:
Marcelo Zimbres
2019-12-14 11:42:49 +01:00
parent f99b52523e
commit de323ba179
2 changed files with 17 additions and 10 deletions

View File

@@ -181,11 +181,23 @@ void example3()
ioc.run();
}
void send_ping()
{
net::io_context ioc;
session s {ioc};
s.send(ping());
s.run();
ioc.run();
}
int main(int argc, char* argv[])
{
example1();
//example1();
//example2();
//example3();
//rpush_ex();
send_ping();
}