Package vtrace :: Module notifiers :: Class DistributedNotifier
[hide private]
[frames] | no frames]

Class DistributedNotifier

source code

object --+    
         |    
  Notifier --+
             |
            DistributedNotifier

A notifier which will distributed notifications out to locally registered notifiers so that remote tracer's notifier callbacks only require once across the wire.

Instance Methods [hide private]
 
__init__(self)
All extenders *must* call this.
source code
 
getProxy(self, trace) source code
 
notify(self, event, trace) source code
 
fireNotifiers(self, event, trace)
Fire all our registerd local-notifiers
source code
 
registerNotifier(self, event, notif)
Register a sub-notifier to get the remote callback's via our local delivery.
source code
 
deregisterNotifier(self, event, notif) source code

Inherited from Notifier: handleEvent

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

All extenders *must* call this. Mostly because all the goop necissary for the remote debugging stuff... (if notifier is instantiated on server, all is well, if it's on the client it needs a proxy...)

Overrides: object.__init__
(inherited documentation)

notify(self, event, trace)

source code 
Overrides: Notifier.notify