Sha256: d87728458af1333d753e19fba4da497fd57d83892a0b2e327af51a1c19f147c9
Contents?: true
Size: 1.13 KB
Versions: 11
Compression:
Stored size: 1.13 KB
Contents
module Eddy module TransactionSets # Namespace for Transaction Set 810 and its loops. module TS810 module Loops module PID # ### Loop Summary: # # - Repeat: 1000 # - Components: # - PID class Base < Eddy::Models::Loop::Base # @param store [Eddy::Data::Store] # @return [void] def initialize(store) @repeat_limit = 1000 super(store, Repeat) end end # (see Eddy::TransactionSets::TS810::Loops::PID::Base) class Repeat < Eddy::Models::Loop::Repeat # @param store [Eddy::Data::Store] # @return [void] def initialize(store) @pid = Eddy::Segments::PID.new(store) super(store, @pid) end # (see Eddy::Segments::PID) # # @yieldparam [Eddy::Segments::PID] pid # @return [Eddy::Segments::PID] def PID() yield(@pid) if block_given? return @pid end end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems