Class: Rinda::SimpleRenewer

Inherits:
Object
  • Object
show all
Includes:
DRbUndumped
Defined in:
lib/rinda/rinda.rb

Overview

An SimpleRenewer allows a TupleSpace to check if a TupleEntry is still alive.

Instance Method Summary collapse

Constructor Details

#initialize(sec = 180) ⇒ SimpleRenewer

Creates a new SimpleRenewer that keeps an object alive for another sec seconds.



314
315
316
# File 'lib/rinda/rinda.rb', line 314

def initialize(sec=180)
  @sec = sec
end

Instance Method Details

#renewObject

Called by the TupleSpace to check if the object is still alive.



321
322
323
# File 'lib/rinda/rinda.rb', line 321

def renew
  @sec
end