|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@InterfaceAudience.Public @InterfaceStability.Stable public interface EventSerializer
This interface provides callbacks for important serialization-related events. This allows generic implementations of serializers to be plugged in, allowing implementations of this interface to do arbitrary header and message formatting, as well as file and message framing.
The following general semantics should be used by drivers that call this interface:
// open file (for example... or otherwise create some new stream) OutputStream out = new FileOutputStream(file); // open for create // build serializer using builder interface EventSerializer serializer = builder.build(ctx, out); // hook to write header (since in this case we opened the file for create) serializer.afterCreate(); // write one or more events serializer.write(event1); serializer.write(event2); serializer.write(event3); // periodically flush any internal buffers from EventSerializer.write() serializer.flush(); // The driver responsible for specifying and implementing its durability // semantics (if any) for flushing or syncing the underlying stream. out.flush(); // when closing the file... // make sure we got all buffered events flushed from the serializer serializer.flush(); // write trailer before closing file serializer.beforeClose(); // Driver is responsible for flushing the underlying stream, if needed, // before closing it. out.flush(); out.close();
Nested Class Summary | |
---|---|
static interface |
EventSerializer.Builder
Knows how to construct this event serializer. Note: Implementations MUST provide a public a no-arg constructor. |
Field Summary | |
---|---|
static String |
CTX_PREFIX
Context prefix |
Method Summary | |
---|---|
void |
afterCreate()
Hook to write a header after file is opened for the first time. |
void |
afterReopen()
Hook to handle any framing needed when file is re-opened (for write). Could have been named afterOpenForAppend() . |
void |
beforeClose()
Hook to write a trailer before the stream is closed. |
void |
flush()
Hook to flush any internal write buffers to the underlying stream. |
boolean |
supportsReopen()
Specify whether this output format supports reopening files for append. |
void |
write(Event event)
Serialize and write the given event. |
Field Detail |
---|
static final String CTX_PREFIX
Context
prefix
Method Detail |
---|
void afterCreate() throws IOException
IOException
void afterReopen() throws IOException
afterOpenForAppend()
.
IOException
void write(Event event) throws IOException
event
- Event to write to the underlying stream.
IOException
void flush() throws IOException
IOException
void beforeClose() throws IOException
IOException
boolean supportsReopen()
false
if
beforeClose()
writes a trailer that "finalizes" the file
(this type of behavior is file format-specific).supportsAppend()
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |