Package org.dellroad.hl7
Interface HL7Writer
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
HL7FileWriter,LLPOutputStream
public interface HL7Writer extends Closeable
Implemented by classes whose instances are capable of sending out HL7 messages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwriteMessage(HL7Message message)Write a message.
-
-
-
Method Detail
-
writeMessage
void writeMessage(HL7Message message) throws IOException
Write a message.- Parameters:
message- message to write- Throws:
IOException- if an I/O error occursIOException- ifCloseable.close()has already been invoked
-
-