Package multi :: Module memo :: Class Memo
[hide private]
[frames] | no frames]

Class Memo

source code


The multi-processor base class Memo of objects and data.

This object is used by the slave processor (via a Slave_command) to transfer the calculation results back to the master processor. This is to be subclassed by the user.

Instance Methods [hide private]
int
memo_id(self)
Get the unique ID for the memo.
source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

memo_id(self)

source code 

Get the unique ID for the memo.

Currently this is the objects unique python ID (note these ids can be recycled once the memo has been garbage collected it cannot be used as a unique longterm hash).

Returns: int
A unique ID for this memo.