ZMQ提供了四个基本的通信模型

ZMQ提供了四个基本的通信模型,分别是
    "Request-Reply"               //请求应答    模式 1v1 两端可发可收
    "Pub-sub"                         //发布+接收 模式(一个只负责发,一个只负责收) PUB已发布消息 SUB接收不到
    "Parallel Pipeline"            //ventilator 超大规模Pub-sub(带kill sigal)
    "Exclusive pair"               //专用组合(This is a pattern for connecting two threads in a process, 
                                            //not to be confused with "normal" pairs of sockets.)
    
    Smart patterns like pub-sub, push-pull, and router-dealer.
    

可行的组合方式(valid for a connect-bind pair)
    PUB and SUB
    REQ and REP
    REQ and ROUTER (take care, REQ inserts an extra null frame)
    DEALER and REP (take care, REP assumes a null frame)
    DEALER and ROUTER
    DEALER and DEALER
    ROUTER and ROUTER
    PUSH and PULL
    PAIR and PAIR

 

官方网址:http://zeromq.org/

使用向导:http://zguide.zeromq.org/page:all

你可能感兴趣的:(书籍资料,ZMQ,ZeroMQ)