Class: Pio::OpenFlow10::Enqueue

Inherits:
Pio::OpenFlow::Action show all
Defined in:
lib/pio/open_flow10/enqueue.rb

Overview

An action to enqueue the packet on the specified queue attached to a port.

Instance Method Summary collapse

Methods inherited from Pio::OpenFlow::Action

action_header, method_missing, read, #to_binary

Constructor Details

#initialize(user_options) ⇒ Enqueue

Returns a new instance of Enqueue.



18
19
20
21
22
# File 'lib/pio/open_flow10/enqueue.rb', line 18

def initialize(user_options)
  validate_port user_options
  validate_queue_id user_options
  super(user_options)
end