class PopVlanHeaderAction

Class that is used to define an OpenFlow POP VLAN header action. Remove the VLAN encapsulation (Q-in-Q).

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/pop_vlan_header_action.rb, line 36
def initialize(order: 0)
  super(order: order)
end