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