HCE Project Python language Distributed Tasks Manager Application, Distributed Crawler Application and client API bindings.  2.0.0-chaika
Hierarchical Cluster Engine Python language binding
ftests.ftest_profiler.SomeClass Class Reference

Public Member Functions

def __init__ (self)
 
def fewSleepCalls (self)
 
def bigSleep (self)
 
def smallSleep (self)
 

Private Member Functions

def __sleep (self, seconds)
 

Detailed Description

A simple class for simulate work

Definition at line 11 of file ftest_profiler.py.

Constructor & Destructor Documentation

◆ __init__()

def ftests.ftest_profiler.SomeClass.__init__ (   self)

Definition at line 13 of file ftest_profiler.py.

13  def __init__(self):
14  print "SomeClass was created"
15 
def __init__(self)
constructor
Definition: UIDGenerator.py:19

Member Function Documentation

◆ __sleep()

def ftests.ftest_profiler.SomeClass.__sleep (   self,
  seconds 
)
private

Definition at line 26 of file ftest_profiler.py.

26  def __sleep(self, seconds):
27  print "SomeClass sleep"
28  sleep(seconds)
29  print "SomeClass wake up"
30 
31 
Here is the caller graph for this function:

◆ bigSleep()

def ftests.ftest_profiler.SomeClass.bigSleep (   self)

Definition at line 20 of file ftest_profiler.py.

20  def bigSleep(self):
21  self.__sleep(3)
22 
Here is the call graph for this function:
Here is the caller graph for this function:

◆ fewSleepCalls()

def ftests.ftest_profiler.SomeClass.fewSleepCalls (   self)

Definition at line 16 of file ftest_profiler.py.

16  def fewSleepCalls(self):
17  self.bigSleep()
18  self.smallSleep()
19 
Here is the call graph for this function:

◆ smallSleep()

def ftests.ftest_profiler.SomeClass.smallSleep (   self)

Definition at line 23 of file ftest_profiler.py.

23  def smallSleep(self):
24  self.__sleep(1)
25 
Here is the call graph for this function:
Here is the caller graph for this function:

The documentation for this class was generated from the following file: