class Babeltrace2::BTSelfMessageIterator::Configuration

Public Instance Methods

can_seek_forward=(can_seek_forward) click to toggle source
# File lib/babeltrace2/graph/self-message-iterator.rb, line 139
def can_seek_forward=(can_seek_forward)
  Babeltrace2.bt_self_message_iterator_configuration_set_can_seek_forward(
    @handle, can_seek_forward ? BT_TRUE : BT_FALSE)
  can_seek_forward
end
set_can_seek_forward(can_seek_forward) click to toggle source
# File lib/babeltrace2/graph/self-message-iterator.rb, line 133
def set_can_seek_forward(can_seek_forward)
  Babeltrace2.bt_self_message_iterator_configuration_set_can_seek_forward(
    @handle, can_seek_forward ? BT_TRUE : BT_FALSE)
  self
end