Class: IO::Event::Selector::Select::Optional

Inherits:
Struct
  • Object
show all
Defined in:
lib/io/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



57
58
59
# File 'lib/io/event/selector/select.rb', line 57

def fiber
  @fiber
end

Instance Method Details

#alive?Boolean

Returns:

  • (Boolean)


62
63
64
# File 'lib/io/event/selector/select.rb', line 62

def alive?
	fiber&.alive?
end

#nullifyObject



66
67
68
# File 'lib/io/event/selector/select.rb', line 66

def nullify
	self.fiber = nil
end

#transfer(*arguments) ⇒ Object



58
59
60
# File 'lib/io/event/selector/select.rb', line 58

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