You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we are exposing all the DataElements and PDS messages on our Iso8583File implementation, this can become bothersome, specially on big iso8583 files (>100MB). We need to filter the fields by value and label.
How?
There are two ways:
Implement Copy for Iso8583File and copy only the intended fields into a new Iso8583File struct (memory intensive)
Implement a filter directly at Iso8583File and change messages implementation (bigger chance of a breaking change on code)
The text was updated successfully, but these errors were encountered:
Why?
Currently we are exposing all the DataElements and PDS messages on our
Iso8583File
implementation, this can become bothersome, specially on big iso8583 files (>100MB). We need to filter the fields by value and label.How?
There are two ways:
messages
implementation (bigger chance of a breaking change on code)The text was updated successfully, but these errors were encountered: