Package prlsdkapi :: Module prlsdk :: Class Result
[hide private]
[frames] | no frames]

Class Result

object --+        
         |        
      Base --+    
             |    
     BaseAsync --+
                 |
                Result

Result object class

Instance Methods [hide private]
 
__getitem__(x, y)
x[y]
 
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
__iter__(x)
iter(x)
 
__len__(x)
len(x)
a new object with type S, a subtype of T
__new__(T, S, ...)
some sdk object/string
get_param(Result, index)
Returns depending on parameter type some SDK object or string with passed index.
string
get_param_as_string(Result, index)
Returns as string representation of parameter with passed index.
int
get_params_count(Result, index)
Returns parameters count.

Inherited from BaseAsync: __cmp__, __repr__, cancel, wait

Inherited from object: __delattr__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __setattr__, __str__

Properties [hide private]
  params_count
Returns count of resulted params

Inherited from BaseAsync: __expected_h_type__, __job__, finished, handle_type

Inherited from Base: __handle__

Inherited from object: __class__

Method Details [hide private]

__init__(...)
(Constructor)

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__