class LoopbackAction

Class to represent OpenFlow action for forwarding to the loopback interface of device

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
# File lib/openflowdev/actions/loopback_action.rb, line 36
def initialize(order: 0)
  super(order: order)
end