2018-11-29 02:51:50 +08:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
2019-01-10 02:38:56 +08:00
|
|
|
|
2018-11-29 02:51:50 +08:00
|
|
|
class IMultiselectClient(ABC):
|
|
|
|
"""
|
|
|
|
Client for communicating with receiver's multiselect
|
|
|
|
module in order to select a protocol id to communicate over
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def select_protocol_or_fail(self, protocol, stream):
|
|
|
|
"""
|
|
|
|
Send message to multiselect selecting protocol
|
|
|
|
and fail if multiselect does not return same protocol
|
|
|
|
:param protocol: protocol to select
|
|
|
|
:param stream: stream to communicate with multiselect over
|
|
|
|
:return: selected protocol
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def select_one_of(self, protocols, stream):
|
|
|
|
"""
|
|
|
|
For each protocol, send message to multiselect selecting protocol
|
|
|
|
and fail if multiselect does not return same protocol. Returns first
|
|
|
|
protocol that multiselect agrees on (i.e. that multiselect selects)
|
|
|
|
:param protocol: protocol to select
|
|
|
|
:param stream: stream to communicate with multiselect over
|
|
|
|
:return: selected protocol
|
|
|
|
"""
|