Used to look up the definition of an RFC interface. Returns an instance of iface. This also automatically defines any associated parm, tab, struct, and field objects that come together to describe a complete RFC Interface.
class reg: def __init__(self): self.cnt = 0 import os def LoopHandler(self, srfc): self.cnt += 1 print "inside the customer loop handler - iter: %d ...\n" % self.cnt if self.cnt >= 30: return -1 return 1 ....
If the LoopHandler() returns < 1, then this is a signal for the accept() loop to exit.