I use the Python bindings that come with Quickfix and I'd like to set the sequence number through it (see why). How can I do this?
I found the following in the SWIG bindings:
class Session(_object):
# ...
def setNextSenderMsgSeqNum(self, *args): return _quickfix.Session_setNextSenderMsgSeqNum(self, *args)
# ...
It requires two parameters: a Session
object and an int
sequence number.
How can I get the Session
object?
Or is there another method of setting the sequence number?