class DecNwTTLAction

Class to define OpenFlow action that decrements Time To Live

Public Class Methods

new(order: 0) click to toggle source

Parameters

  • order

    integer : The order of the action relative to other actions in Instruction.

Calls superclass method Action.new
# File lib/openflowdev/actions/dec_nw_ttl_action.rb, line 36
def initialize(order: 0)
  super(order: order)
end

Public Instance Methods

to_hash() click to toggle source
# File lib/openflowdev/actions/dec_nw_ttl_action.rb, line 40
def to_hash
  {:order => @order, 'dec-nw-ttl' => {}}
end