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



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

def fiber
  @fiber
end

Instance Method Details

#alive?Boolean

Returns:

  • (Boolean)


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

def alive?
	fiber&.alive?
end

#nullifyObject



52
53
54
# File 'lib/io/event/selector/select.rb', line 52

def nullify
	self.fiber = nil
end

#transfer(*arguments) ⇒ Object



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

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