Class: Ever::Watcher

Inherits:
Object
  • Object
show all
Defined in:
ext/ever/watcher.c

Instance Method Summary collapse

Constructor Details

#initializeObject



53
54
55
56
57
58
59
# File 'ext/ever/watcher.c', line 53

VALUE Watcher_initialize(VALUE self) {
  Watcher_t *watcher;
  GetWatcher(self, watcher);

  watcher->key = Qnil;
  return self;
}