Package vdb :: Package stalker :: Class StalkerBlockBreak
[hide private]
[frames] | no frames]

Class StalkerBlockBreak

source code

vtrace.breakpoints.Breakpoint --+
                                |
                               StalkerBlockBreak

A breakpoint object which is put on codeblock boundaries to track hits.

Instance Methods [hide private]
 
__init__(self, address, expression=None) source code
 
notify(self, event, trace)
Breakpoints may also extend and implement "notify" which will be called whenever they are hit.
source code

Inherited from vtrace.breakpoints.Breakpoint: __repr__, activate, deactivate, getAddress, getBreakpointCode, getId, getName, inittrace, isEnabled, resolveAddress, resolvedaddr, setBreakpointCode, setEnabled

Class Variables [hide private]

Inherited from vtrace.breakpoints.Breakpoint: bpcodeobj

Method Details [hide private]

__init__(self, address, expression=None)
(Constructor)

source code 
Overrides: vtrace.breakpoints.Breakpoint.__init__

notify(self, event, trace)

source code 

Breakpoints may also extend and implement "notify" which will be called whenever they are hit. If you want to continue the ability for this breakpoint to have bpcode, you must call this method from your override.

Overrides: vtrace.breakpoints.Breakpoint.notify
(inherited documentation)