zhangmeng
2019-05-17 d23f54e337d12fb4e6d5a0a5e1f041a51005e10c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package deliver
 
// Mode is the numeric abstraction to the various protocols or patterns
// that Mangos supports.
type Mode int
 
// Constants for protocols.
const (
    ModeStart = iota
    PushPull
    PubSub
    ReqRep
    SurvResp
    Bus
    Pair
    ModeNNG
    ModeEnd
)