
org.dellroad.hl7.HL7Writer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hl7lib Show documentation
Show all versions of hl7lib Show documentation
Lightweight Java library for HL7 messages
The newest version!
/*
* Copyright (C) 2008 Archie L. Cobbs. All rights reserved.
*/
package org.dellroad.hl7;
import java.io.Closeable;
import java.io.IOException;
/**
* Implemented by classes whose instances are capable of sending out HL7 messages.
*/
public interface HL7Writer extends Closeable {
/**
* Write a message.
*
* @param message message to write
* @throws IOException if an I/O error occurs
* @throws IOException if {@link #close} has already been invoked
*/
void writeMessage(HL7Message message) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy