Package org.dellroad.hl7
Interface HL7Reader
-
- All Superinterfaces:
AutoCloseable
,Closeable
- All Known Implementing Classes:
HL7FileReader
,LLPInputStream
public interface HL7Reader extends Closeable
Input source for HL7 messages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HL7Message
readMessage()
Read the next HL7 message.
-
-
-
Method Detail
-
readMessage
HL7Message readMessage() throws IOException, HL7ContentException
Read the next HL7 message.- Returns:
- next message read
- Throws:
HL7ContentException
- if an invalid HL7 message is received, decoded, etc. by this instanceEOFException
- if there is no more inputIOException
- if some other I/O error occursIOException
- ifCloseable.close()
has already been invoked
-
-