Class: Event::Selector::Select::Queue

Inherits:
Struct
  • Object
show all
Defined in:
lib/event/selector/select.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#fiberObject

Returns the value of attribute fiber

Returns:

  • (Object)

    the current value of fiber



39
40
41
# File 'lib/event/selector/select.rb', line 39

def fiber
  @fiber
end

Instance Method Details

#alive?Boolean

Returns:

  • (Boolean)


44
45
46
# File 'lib/event/selector/select.rb', line 44

def alive?
  fiber&.alive?
end

#nullifyObject



48
49
50
# File 'lib/event/selector/select.rb', line 48

def nullify
  self.fiber = nil
end

#transfer(*arguments) ⇒ Object



40
41
42
# File 'lib/event/selector/select.rb', line 40

def transfer(*arguments)
  fiber&.transfer(*arguments)
end