Add files for Paxos decision system.
This commit is contained in:
14
DecisionSystem/PaxosDecision/paxos_instance.py
Normal file
14
DecisionSystem/PaxosDecision/paxos_instance.py
Normal file
@@ -0,0 +1,14 @@
|
||||
'''
|
||||
@author Michael Pivato
|
||||
|
||||
Much thanks to Tom Cocagne by providing basic paxos code
|
||||
which was the basis of this module and algorithm.
|
||||
Check out the original at: https://github.com/cocagne/paxos/blob/master/paxos/essential.py
|
||||
'''
|
||||
|
||||
from learner import Learner
|
||||
from acceptor import Acceptor
|
||||
from proposer import Proposer
|
||||
|
||||
class PaxosInstance():
|
||||
pass
|
||||
Reference in New Issue
Block a user