26 lines
629 B
Python
26 lines
629 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class IPeerMetadata(ABC):
|
|
|
|
def __init__(self, context):
|
|
self.context = context
|
|
|
|
@abstractmethod
|
|
def get(self, peer_id, key):
|
|
"""
|
|
:param peer_id: peer ID to lookup key for
|
|
:param key: key to look up
|
|
:return: value at key for given peer, error
|
|
"""
|
|
pass
|
|
|
|
@abstractmethod
|
|
def put(self, peer_id, key, val):
|
|
"""
|
|
:param peer_id: peer ID to lookup key for
|
|
:param key: key to associate with peer
|
|
:param val: value to associated with key
|
|
:return: error
|
|
"""
|
|
pass
|
|
|