You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update functional options (#42)
Refactor most functional options to use the same underlining interface
which will help with inter-op and passing them along. For instance, now
a transport functional option can be passed in during the SocketIO
server setup. Also, simplified the execution path for applying options
previously it was a O(n^n) application process of options. This has been
simplified to O(n*m), and gives a much more logical execution path of
when an option will be applied.
Refactor and add tests (#26)
All tests are updated to look similar and follow the same `t.Run`
sub-test format. Also this commit expands the test coverage for
Callable and Serializable through examples.