class Eddy::TransactionSets::TS855::Loops::ACK::Repeat

(see Eddy::TransactionSets::TS855::Loops::ACK::Base)

Public Class Methods

new(store) click to toggle source

@param store [Eddy::Data::Store] @return [void]

Calls superclass method Eddy::Models::Loop::Repeat::new
# File lib/definitions/transaction_sets/manual/855/loops/ack.rb, line 26
def initialize(store)
  @ack = Eddy::Segments::ACK.new(store)
  super(store, @ack)
end

Public Instance Methods

ACK() { |ack| ... } click to toggle source

(see Eddy::Segments::ACK)

@yieldparam [Eddy::Segments::ACK] @return [Eddy::Segments::ACK]

# File lib/definitions/transaction_sets/manual/855/loops/ack.rb, line 35
def ACK()
  yield(@ack) if block_given?
  return @ack
end