Add notify function to network interface

This commit is contained in:
Stuckinaboot 2019-02-28 18:12:33 -05:00
parent 510a5eaa34
commit 95f1f0bbf0

View File

@ -41,3 +41,9 @@ class INetwork(ABC):
:param *args: one or many multiaddrs to start listening on
:return: True if at least one success
"""
@abstractmethod
def notify(self, notifee):
"""
:param notifee: object implementing Notifee interface
"""