• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++ client类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C++中client的典型用法代码示例。如果您正苦于以下问题:C++ client类的具体用法?C++ client怎么用?C++ client使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了client类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: test_bitcount

void test_bitcount(client &c) {
    c.flushdb();
    c.set("mykey", "foobar");
    assert(c.bitcount("mykey")==26);
    assert(c.bitcount("mykey", {0,0})==4);
    assert(c.bitcount("mykey", {1,1})==6);
    assert(c.bitcount("nonexist", {8,12})==0);
}
开发者ID:sharpglasses,项目名称:fibio,代码行数:8,代码来源:test_redis_client.cpp


示例2: echoMessage

void echoMessage(int i)
{
    echoed = false;

    clientIO.send(heavyConnections[i], ECHO_MESSAGE, websocketpp::frame::opcode::value::TEXT);

    while(!echoed) {
        clientIO.run_one();
    }
}
开发者ID:oleg7814,项目名称:node-lws,代码行数:10,代码来源:main.cpp


示例3: nextConnection

void nextConnection()
{
    static std::string uri;

    if (connections % CONNECTIONS_PER_INTERFACE == 0) {
        uri = "ws://127.0.0." + to_string(connections / CONNECTIONS_PER_INTERFACE + 1) + ":" + to_string(port);
    }

    websocketpp::lib::error_code ec;
    connection_ptr con = clientIO.get_connection(uri, ec);
    clientIO.connect(con);
}
开发者ID:AlmirKadric,项目名称:uWebSockets,代码行数:12,代码来源:bench2.cpp


示例4: main

int main(int argc, char **argv)
{
    clientIO.clear_access_channels(websocketpp::log::alevel::all);
    clientIO.init_asio();

    clientIO.set_message_handler([](websocketpp::connection_hdl hdl, client::message_ptr msg) {
        if (ECHO_MESSAGE != msg->get_payload()) {
            cout << "Error echo" << endl;
            exit(-1);
        }
        echoed = true;
    });

    clientIO.set_open_handler([&clientIO](websocketpp::connection_hdl hdl) {
        connected = true;
        heavyConnections.push_back(hdl);
    });

    startPoint = chrono::system_clock::now();
    while(connections < TOTAL_CONNECTIONS) {

        // Idle connections are made very lightweight
        for (int i = 0; i < IDLE_CONNECTIONS_PER_ACTIVE_CONNECTION
             && connections < TOTAL_CONNECTIONS; i++) {
            if (nextLightweightConnection()) {
                return -1;
            }
        }

        // Active connections are "real" using WebSocket++
        nextHeavyweightConnection();
    }

    cout << "----------------------------------" << endl;

    cout << "Active connections: " << heavyConnections.size() << endl;
    cout << "Idle connections: " << (connections - heavyConnections.size()) << endl;
    float connectionsPerSecond = float(connections) / chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now() - startPoint).count();
    cout << "Connection performance: " << connectionsPerSecond << " connections/ms" << endl;

    // start sending messages using the active connections
    cout << "----------------------------------" << endl;
    startPoint = chrono::system_clock::now();
    for (int i = 0; i < heavyConnections.size(); i++) {
        echoMessage(i);
    }
    cout << "Echo delay, microseconds: " << chrono::duration_cast<chrono::microseconds>(chrono::system_clock::now() - startPoint).count() << endl;

    cout << "ALL DONE" << endl;
    clientIO.run();

    return 0;
}
开发者ID:oleg7814,项目名称:node-lws,代码行数:53,代码来源:main.cpp


示例5: run_time_limited_client

void run_time_limited_client(client & c, std::string uri, long timeout,
    bool log)
{
    if (log) {
        c.set_access_channels(websocketpp::log::alevel::all);
        c.set_error_channels(websocketpp::log::elevel::all);
    } else {
        c.clear_access_channels(websocketpp::log::alevel::all);
        c.clear_error_channels(websocketpp::log::elevel::all);
    }
    c.init_asio();

    websocketpp::lib::error_code ec;
    client::connection_ptr con = c.get_connection(uri,ec);
    BOOST_CHECK( !ec );
    c.connect(con);

    websocketpp::lib::thread tthread(websocketpp::lib::bind(
        &close_after_timeout<client>,
        websocketpp::lib::ref(c),
        con->get_handle(),
        timeout
    ));
    tthread.detach();

    c.run();
}
开发者ID:Banaan,项目名称:websocketpp,代码行数:27,代码来源:integration.cpp


示例6: nextHeavyweightConnection

void nextHeavyweightConnection()
{
    connected = false;
    string uri = "ws://127.0.0." + to_string(address) + ":" + to_string(PORT);
    websocketpp::lib::error_code ec;
    connection_ptr con = clientIO.get_connection(uri, ec);
    clientIO.connect(con);

    while(!connected) {
        clientIO.run_one();
    }

    updateAddress();
}
开发者ID:oleg7814,项目名称:node-lws,代码行数:14,代码来源:main.cpp


示例7: test_sub

void test_sub(client &c) {
    message_queue &q=c.subscribe({"abc", "def"});
    fiber pubber(test_pub);
    redis_message msg;
    q.pop(msg);
    assert(msg.first=="abc");
    assert(msg.second=="123");
    q.pop(msg);
    assert(msg.first=="def");
    assert(msg.second=="456");
    c.unsubscribe({"abc", "def"});
    this_fiber::sleep_for(std::chrono::seconds(1));
    assert(!q.is_open());
    pubber.join();
}
开发者ID:sharpglasses,项目名称:fibio,代码行数:15,代码来源:test_redis_client.cpp


示例8: test_get_set

void test_get_set(client &c) {
    c.flushdb();
    c.set("k1", "v1");
    assert(*c.get("k1")=="v1");
    c.set("k1", "v2");
    assert(*c.get("k1")=="v2");
    assert(!c.get("nonexist"));

    c.set("mykey", "10.5");
    c.incrbyfloat("mykey", "0.1");
    assert(*(c.get("mykey"))=="10.6");
}
开发者ID:sharpglasses,项目名称:fibio,代码行数:12,代码来源:test_redis_client.cpp


示例9: async_submit_job

inline error_code async_submit_job(client const &client, char const *rsl, JobSubmitCallback const &job_submit_callback, int state_mask, StateChangeCallback const &state_chage_callback)
{
	typedef listen_state_op<StateChangeCallback, non_blocking> listen_state_op_type;
	listen_state_op_type *listener_op = new listen_state_op_type(state_chage_callback);

	char *callback_contact(0);
	int const callback_allowed(
		::globus_gram_client_callback_allow(
			&listen_state_op<StateChangeCallback, non_blocking>::callback,
			listener_op, &callback_contact));
	if (callback_allowed != GLOBUS_SUCCESS)
	{
		delete listener_op;
		return static_cast<error_code>(callback_allowed);
	}

	job_submit_op<JobSubmitCallback> *op = new job_submit_op<JobSubmitCallback>(job_submit_callback);
	int const job_requested(
		::globus_gram_client_register_job_request(
			client.contact(), rsl, state_mask, callback_contact, 0, &job_submit_op<JobSubmitCallback>::callback, op));
	if (job_requested != GLOBUS_SUCCESS)
	{
		delete listener_op;
		delete op;
		return static_cast<error_code>(job_requested);
	}
	return no_error;
}
开发者ID:hamazy,项目名称:globus_cxx,代码行数:28,代码来源:client.hpp


示例10: submit_job_wait_until

inline error_code submit_job_wait_until(client const &client, char const *rsl, int state_mask, StateChangeListener const &listener)
{
	listen_state_op<StateChangeListener, blocking> listener_op(listener);

	char *callback_contact(0);
	int const callback_allowed(
		::globus_gram_client_callback_allow(
			&listen_state_op<StateChangeListener, blocking>::callback,
			&listener_op, &callback_contact));
	if (callback_allowed != GLOBUS_SUCCESS) return static_cast<error_code>(callback_allowed);
	listener_op.listen();

	char *job_contact(0);
	int const job_requested(
		::globus_gram_client_job_request(
			client.contact(), rsl, state_mask, callback_contact, &job_contact));
	if (job_requested != GLOBUS_SUCCESS)
	{
		listener_op.cancel();
		return static_cast<error_code>(job_requested);
	}

	typedef std::pointer_to_unary_function<void *,void> function_type;
	globus::util::on_exit<function_type> free_contact(
		std::ptr_fun(::free), job_contact);

	return no_error;
}
开发者ID:hamazy,项目名称:globus_cxx,代码行数:28,代码来源:client.hpp


示例11: on_message

void on_message(client* c, websocketpp::connection_hdl hdl, message_ptr msg) {
    client::connection_ptr con = sip_client.get_con_from_hdl(hdl);

    std::cout << "Received a reply:" << std::endl;
    fwrite(msg->get_payload().c_str(), msg->get_payload().size(), 1, stdout);
    received=true;
}
开发者ID:2uropa,项目名称:cpprestsdk,代码行数:7,代码来源:sip_client.cpp


示例12: test_sscan

void test_sscan(client &c) {
    c.flushdb();
    std::set<std::string> expected;
    for (int i=42; i<442; i++) {
        std::string k("key");
        k+=boost::lexical_cast<std::string>(i);
        c.sadd("myset", {k});
        expected.insert(k);
    }

    std::set<std::string> keys;
    for(auto i=c.sscan("myset"); i!=c.end(); ++i) {
        keys.insert(*i);
    }
    assert(keys==expected);
}
开发者ID:sharpglasses,项目名称:fibio,代码行数:16,代码来源:test_redis_client.cpp


示例13: test_zscan

void test_zscan(client &c) {
    c.flushdb();
    std::set<std::string> expected;
    for (int i=42; i<442; i++) {
        std::string k("key");
        k+=boost::lexical_cast<std::string>(i);
        c.zadd("myzset", {{1.2, k}});
        expected.insert(k);
    }

    std::set<std::string> keys;
    for(auto i=c.zscan("myzset"); i!=c.end(); ++i) {
        keys.insert(*i);
        assert(i.score()==1.2);
    }
    assert(keys==expected);
}
开发者ID:sharpglasses,项目名称:fibio,代码行数:17,代码来源:test_redis_client.cpp


示例14: test_hscan

void test_hscan(client &c) {
    c.flushdb();
    std::set<std::string> expected;
    for (int i=42; i<442; i++) {
        std::string k("key");
        k+=boost::lexical_cast<std::string>(i);
        std::string v("key");
        v+=boost::lexical_cast<std::string>(i);
        c.hset("myhash", k, v);
        expected.insert(k);
    }

    std::set<std::string> keys;
    for(auto i=c.hscan("myhash"); i!=c.end(); ++i) {
        keys.insert(*i);
    }
    assert(keys==expected);
}
开发者ID:sharpglasses,项目名称:fibio,代码行数:18,代码来源:test_redis_client.cpp


示例15: on_open

void on_open(client* c, websocketpp::connection_hdl hdl) {
    // now it is safe to use the connection
    std::cout << "connection ready" << std::endl;

    received=false;
    // Send a SIP OPTIONS message to the server:
    std::string SIP_msg="OPTIONS sip:[email protected] SIP/2.0\r\nVia: SIP/2.0/WS df7jal23ls0d.invalid;rport;branch=z9hG4bKhjhs8ass877\r\nMax-Forwards: 70\r\nTo: <sip:car[email protected]>\r\nFrom: Alice <sip:[email protected]>;tag=1928301774\r\nCall-ID: a84b4c76e66710\r\nCSeq: 63104 OPTIONS\r\nContact: <sip:[email protected]>\r\nAccept: application/sdp\r\nContent-Length: 0\r\n\r\n";
    sip_client.send(hdl, SIP_msg.c_str(), websocketpp::frame::opcode::text);
}
开发者ID:2uropa,项目名称:cpprestsdk,代码行数:9,代码来源:sip_client.cpp


示例16: echo

void echo(int messages, int factor)
{
    for (int j = 0; j < factor; j++) {
        for (int i = 0; i < messages; i++) {
            clientIO.send(connectionVector[rand() % connectionVector.size()], ECHO_MESSAGE, websocketpp::frame::opcode::value::BINARY);
            sent++;
        }
    }
}
开发者ID:AlmirKadric,项目名称:uWebSockets,代码行数:9,代码来源:bench2.cpp


示例17: main

int main()
{
	// Remove superfluous logging
	test_client.clear_access_channels(websocketpp::log::alevel::all);
    test_client.clear_error_channels(websocketpp::log::elevel::all);
        
	// Normal endpoint setup (just as you would with the regular websocketpp::client)
	test_client.init_asio();
	// The endpoint must be perpetual. TODO look at supporting non perpetual (will have to use .reset())
	test_client.start_perpetual();
	// Start spinning the thread
	test_thread.reset(new websocketpp::lib::thread(&client::run, &test_client));
	
	// Done boilerplate initialization, now our connection code:
	websocketpp::lib::error_code ec;
	client::connection_ptr con = test_client.get_connection("ws://some.fake.server.that.should.not.exist:9001", ec);
	if(ec)
	{
		throw ec;
	}
	// Setup any retry_data settings here
	con->m_retry = true;		// Indicates that we do want to attempt to retry connecting (if first attempt fails)
	con->m_retry_delay = 300;	// Will wait 300ms between attempts
	con->m_max_attempts = 10;	// Will stop attempting to retry after 10 attempts
	
	try
	{
		// Delibrately call connect without setting a configure_handler
		// This shows the importance that when setting handlers such as
		// open, message, closed... handlers it must be done within the
		// configure handler because each retry attempt creates a new
		// connection using get_connection(...)
		test_client.connect(con);
    } catch (const websocketpp::exception & e) {
        std::cout << e.what() << std::endl;
    }
    
    // Must setup a configure handler, where we register specific connection items (eg. handlers, etc)...
	con->set_configure_handler(bind(&configure_con, &test_client, ::_1));
    
    std::cout << "Sleeping for 4 seconds to simulate a server that we cannot connect to" << std::endl;
    std::cout << "and 4 seconds is enough for the 10 retries (@ 300ms delay) to run it's course" << std::endl;
    
    // Now connect will start attempting to connect
    test_client.connect(con);
    
    std::this_thread::sleep_for(std::chrono::seconds(6));
    
    test_client.stop_perpetual();
    test_thread->join();
    return 0;
}
开发者ID:maldworth,项目名称:websocketpp-retry-client,代码行数:52,代码来源:example2.cpp


示例18: test_sort

void test_sort(client &c) {
    c.flushdb();
    c.lpush("mylist", {"c"});
    c.lpush("mylist", {"b", "a"});
    assert((c.sort("mylist", client::sort_criteria().alpha())==std::list<std::string> {"a", "b", "c"}));
    assert((c.sort("mylist", client::sort_criteria().alpha().desc())==std::list<std::string> {"c", "b", "a"}));
    assert(c.sort("mylist", client::sort_criteria().alpha().desc(), "mylist2")==3);
    assert((c.lrange("mylist2", 0, 100)==std::list<std::string> {"c", "b", "a"}));
}
开发者ID:sharpglasses,项目名称:fibio,代码行数:9,代码来源:test_redis_client.cpp


示例19: onPing

void client::onPing(client& c, std::string message)
{
    std::smatch match;
    std::regex e("PING :(.*)");
    std::regex_match(message, match, e);

    if(match.size())
    {
        std::string pong("PONG :");
        pong += match[1];
        c.send(pong);
    }
}
开发者ID:hef,项目名称:strup,代码行数:13,代码来源:client.cpp


示例20: operator

    void operator()(client& c, std::string message)
    {
        std::smatch match;
        std::regex expression("^:(\\S+) PRIVMSG (\\S+)+ :!alice$");
        std::regex_search(message, match, expression);

        if(match.size())
        {
            std::string sender = match[2];
            std::string message = g.getSentence();
            c.send("PRIVMSG " + sender + " :" + message);
        }
    }
开发者ID:hef,项目名称:strup,代码行数:13,代码来源:main.cpp



注:本文中的client类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++ cluster类代码示例发布时间:2022-05-31
下一篇:
C++ cl_mem类代码示例发布时间:2022-05-31
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap