class DecMplsTTLAction

Class representing OpenFlow action to decrement the MPLS Time To Live value.

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_mpls_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_mpls_ttl_action.rb, line 40
def to_hash
  {:order => @order, 'dec-mpls-ttl' => {}}
end