Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix to Poller Abstraction #158

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions pysyncobj/syncobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def _deserialize(self, data):
# https://github.com/bakwc/PySyncObj

class SyncObj(object):
def __init__(self, selfNode, otherNodes, conf=None, consumers=None, nodeClass = TCPNode, transport = None, transportClass = TCPTransport):
def __init__(self, selfNode, otherNodes, conf=None, consumers=None, nodeClass = TCPNode, transport = None, transportClass = TCPTransport, pollerClass = None):
"""
Main SyncObj class, you should inherit your own class from it.

Expand Down Expand Up @@ -190,7 +190,11 @@ def __init__(self, selfNode, otherNodes, conf=None, consumers=None, nodeClass =
self.__conf.deserializer,
self.__conf.serializeChecker)
self.__lastInitTryTime = 0
self._poller = createPoller(self.__conf.pollerType)

if pollerClass:
self._poller = pollerClass()
else:
self._poller = createPoller(self.__conf.pollerType)

if transport is not None:
self.__transport = transport
Expand Down