Class: Rinda::SimpleRenewer
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| 
         Instance Chain: 
        
          self,
          DRbUndumped
         
       | 
    |
| Inherits: | Object | 
| Defined in: | lib/rinda/rinda.rb | 
Overview
An SimpleRenewer allows a TupleSpace to check if a TupleEntry is still alive.
Class Method Summary
- 
    
      .new(sec = 180)  ⇒ SimpleRenewer 
    
    constructor
    
Creates a new
SimpleRenewerthat keeps an object alive for anothersecseconds. 
Instance Method Summary
- 
    
      #renew  
    
    
Called by the
TupleSpaceto check if the object is still alive. 
Constructor Details
    .new(sec = 180)  ⇒ SimpleRenewer 
  
Creates a new SimpleRenewer that keeps an object alive for another sec seconds.
# File 'lib/rinda/rinda.rb', line 316
def initialize(sec=180) @sec = sec end
Instance Method Details
#renew
Called by the TupleSpace to check if the object is still alive.
# File 'lib/rinda/rinda.rb', line 323
def renew @sec end