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



55
56
57
# File 'lib/io/event/selector/select.rb', line 55

def fiber
  @fiber
end

Instance Method Details

#alive?Boolean

Returns:

  • (Boolean)


60
61
62
# File 'lib/io/event/selector/select.rb', line 60

def alive?
	fiber&.alive?
end

#nullifyObject



64
65
66
# File 'lib/io/event/selector/select.rb', line 64

def nullify
	self.fiber = nil
end

#transfer(*arguments) ⇒ Object



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

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