The HL7FileAnalyzer Object

PreviousNext

Examining HL7 data files to extract messages

(c) 2011 Hermetech International Ltd.

The HL7FileAnalyzer Object is a blisteringly fast HL7 data file 'mapper'. It literally analyzes an HL7 message data file and maps the size, start and end point of every HL7 message within that file. Analyzer objects can only be created by HL7Vendor Objects (see the NewFileAnalyzer method).

 

For more info see: Properties, Methods, Events and Enumerators

 

 

Object Creation:

 

Dim oAnalyzer As EasyHL7MC40.HL7FileAnalyzer

Private WithEvents oAnalyzer As EasyHL7MC40.HL7FileAnalyzer

Public WithEvents oAnalyzer As EasyHL7MC40.HL7FileAnalyzer

Friend WithEvents oAnalyzer As EasyHL7MC40.HL7FileAnalyzer

 

Then Instantiate the Object like so:

'Where oVendor is a valid HL7Vendor object with an open vendor definition

oAnalyzer = oVendor.NewFileAnalyzer()

 

 

DO NOT DO THIS:

 

Dim oAnalyzer As New EasyHL7MC40.HL7FileAnalyzer

Private oAnalyzer As New EasyHL7MC40.HL7FileAnalyzer

Public oAnalyzer As New EasyHL7MC40.HL7FileAnalyzer

Friend oAnalyzer As New EasyHL7MC40.HL7FileAnalyzer