server/repository.py
changeset 8214 ce9556358dbd
parent 8211 543e1579ba0d
child 8229 b7bc631816f7
equal deleted inserted replaced
8211:543e1579ba0d 8214:ce9556358dbd
   119                             'NOT X eid %%(x)s' % rtype,
   119                             'NOT X eid %%(x)s' % rtype,
   120                             {'x': eidfrom, 'y': eidto})
   120                             {'x': eidfrom, 'y': eidto})
   121 
   121 
   122 
   122 
   123 class NullEventBus(object):
   123 class NullEventBus(object):
   124     def send(self, msg):
   124     def publish(self, msg):
   125         pass
   125         pass
   126 
   126 
   127     def add_subscription(self, topic, callback):
   127     def add_subscription(self, topic, callback):
   128         pass
   128         pass
   129 
   129