Commit c9a5f7ac authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 17fc7c92
...@@ -638,6 +638,7 @@ type AnswerTIDs struct { ...@@ -638,6 +638,7 @@ type AnswerTIDs struct {
TIDList []zodb.Tid TIDList []zodb.Tid
} }
/*
// Ask for length TIDs starting at min_tid. The order of TIDs is ascending. // Ask for length TIDs starting at min_tid. The order of TIDs is ascending.
// C -> S. // C -> S.
// Answer the requested TIDs. S -> C // Answer the requested TIDs. S -> C
...@@ -652,6 +653,7 @@ type TIDListFrom struct { ...@@ -652,6 +653,7 @@ type TIDListFrom struct {
type AnswerTIDListFrom struct { type AnswerTIDListFrom struct {
TidList []zodb.Tid TidList []zodb.Tid
} }
*/
// Ask information about a transaction. Any -> S. // Ask information about a transaction. Any -> S.
// Answer information (user, description) about a transaction. S -> Any. // Answer information (user, description) about a transaction. S -> Any.
......
...@@ -41,8 +41,13 @@ noask('RebaseObject') ...@@ -41,8 +41,13 @@ noask('RebaseObject')
noask('StoreObject') noask('StoreObject')
noask('StoreTransaction') noask('StoreTransaction')
noask('VoteTransaction') noask('VoteTransaction')
noask('TransactionInformation')
noask('ObjectHistory')
noask('PartitionList')
noask('NodeList')
_ = renames _ = renames
_['AskPrimary'] = 'PrimaryMaster'
_['AskObject'] = 'GetObject' _['AskObject'] = 'GetObject'
......
This diff is collapsed.
...@@ -5,7 +5,7 @@ var pyMsgRegistry = map[uint16]string{ ...@@ -5,7 +5,7 @@ var pyMsgRegistry = map[uint16]string{
1: "RequestIdentification", 1: "RequestIdentification",
3: "Ping", 3: "Ping",
5: "CloseClient", 5: "CloseClient",
6: "AskPrimary", 6: "PrimaryMaster",
8: "NotPrimaryMaster", 8: "NotPrimaryMaster",
9: "NotifyNodeInformation", 9: "NotifyNodeInformation",
10: "Recovery", 10: "Recovery",
...@@ -35,10 +35,10 @@ var pyMsgRegistry = map[uint16]string{ ...@@ -35,10 +35,10 @@ var pyMsgRegistry = map[uint16]string{
48: "VoteTransaction", 48: "VoteTransaction",
50: "GetObject", 50: "GetObject",
52: "AskTIDs", 52: "AskTIDs",
54: "AskTransactionInformation", 54: "TransactionInformation",
56: "AskObjectHistory", 56: "ObjectHistory",
58: "AskPartitionList", 58: "PartitionList",
60: "AskNodeList", 60: "NodeList",
62: "SetNodeState", 62: "SetNodeState",
63: "AddPendingNodes", 63: "AddPendingNodes",
64: "TweakPartitionTable", 64: "TweakPartitionTable",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment