Transport calling mechanism seems inverted

Issue #5 resolved
Kevin Adler created an issue

How you call itoolkit transports seems backwards to me:

itransport = iLibCall()
itool = iToolKit()
itool.add(...)
itool.call(itransport)

would make more sense to me as:

itransport = iLibCall()
itool = iToolKit()
itool.add(...)
itransport.call(itool)

Comments (5)

  1. Log in to comment