Add empty process_(remote|local)_state methods
This commit is contained in:
parent
2180e84d22
commit
e148b219c2
@ -157,6 +157,12 @@ class Endpoint(object):
|
|||||||
except IndexError:
|
except IndexError:
|
||||||
LOG.debug("Endpoint %s: ignoring unexpected local event",
|
LOG.debug("Endpoint %s: ignoring unexpected local event",
|
||||||
self._name)
|
self._name)
|
||||||
|
else:
|
||||||
|
def _process_remote_state(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def _process_local_state(self):
|
||||||
|
pass
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def _endpoint_state(self):
|
def _endpoint_state(self):
|
||||||
|
@ -193,7 +193,7 @@ class _Link(Endpoint):
|
|||||||
# if link not already closed:
|
# if link not already closed:
|
||||||
if self._endpoint_state & proton.Endpoint.REMOTE_ACTIVE:
|
if self._endpoint_state & proton.Endpoint.REMOTE_ACTIVE:
|
||||||
# simulate close received
|
# simulate close received
|
||||||
self.process_remote_state()
|
self._process_remote_state()
|
||||||
elif self._endpoint_state & proton.Endpoint.REMOTE_UNINIT:
|
elif self._endpoint_state & proton.Endpoint.REMOTE_UNINIT:
|
||||||
# locally created link, will never come up
|
# locally created link, will never come up
|
||||||
self._failed = True
|
self._failed = True
|
||||||
|
Loading…
Reference in New Issue
Block a user