|
- Method resolution order:
- Application
- UtilApplication
- Propertied
- object
Methods defined here:
- onS(self, agi)
- Incoming AGI connection to the "s" extension (start operation)
Methods inherited from UtilApplication:
- __init__(self)
- Initialise the application from options in configFile
- dispatchIncomingCall(self, agi)
- Handle an incoming call (dispatch to the appropriate registered handler)
- handleCallsFor(self, extension, callback)
- Register permanant handler for given extension
extension -- string extension for which to wait
callback -- callback function to be called for each incoming channel
to the given extension.
returns None
- waitForCallOn(self, extension, timeout=15)
- Wait for an AGI call on extension given
extension -- string extension for which to wait
timeout -- duration in seconds to wait before defer.TimeoutError is
returned to the deferred.
returns deferred returning connected FastAGIProtocol or an error
Data and other attributes inherited from UtilApplication:
- agiSpecifier = <BasicProperty 'agiSpecifier'>
- FastAGI server specifier for the application see AGISpecifier
- amiSpecifier = <BasicProperty 'amiSpecifier'>
- AMI connection specifier for the application see AMISpecifier
- configFiles = ('starpy.conf', '~/.starpy.conf')
- extensionHandlers = <DictionaryProperty 'extensionHandlers'>
- Set of permanant callbacks waiting for incoming extensions
- extensionWaiters = <DictionaryProperty 'extensionWaiters'>
- Set of deferreds waiting for incoming extensions
Methods inherited from Propertied:
- __str__(self)
- Get a friendly representation of the object
- clone(self, **newValues)
- Clone this object, with optional new property values
This method calls the __init__ method of your class with
the current property values of your class. Providing newValues
(a dictionary) overrides property settings with new values.
- getCloneProperties(self)
- Get properties dictionary (key:value) for use in cloning of the instance
By default you get getProperties()' values, with an
attempt made to use the property's name, then the property's
direct "__get__" method.
- toString(self, indentation='', alreadyDone=None, indentString=' ')
- Get a nicely formatted representation of this object
This version assumes that getProperties returns
the list of properties which should be presented,
it recursively calls it's children with greater
indents to get their representations.
indentation -- current string indentation level
alreadyDone -- set of object ids which are already finished
XXX Needs a far better API, likely a stand-alone class
without the automatic inheritance problems here :(
Class methods inherited from Propertied:
- getProperties(cls) from type
- Get the BasicProperty properties for a particular object's class
Data and other attributes inherited from Propertied:
- __dict__ = <dictproxy object>
- dictionary for instance variables (if defined)
- __weakref__ = <attribute '__weakref__' of 'Propertied' objects>
- list of weak references to the object (if defined)
|