Package org.jivesoftware.smack.util
Class ObservableWriter
- java.lang.Object
-
- java.io.Writer
-
- org.jivesoftware.smack.util.ObservableWriter
-
- All Implemented Interfaces:
Closeable,Flushable,Appendable,AutoCloseable
public class ObservableWriter extends Writer
An ObservableWriter is a wrapper on a Writer that notifies to its listeners when writing to character streams.
-
-
Constructor Summary
Constructors Constructor Description ObservableWriter(Writer wrappedWriter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddWriterListener(WriterListener writerListener)Adds a writer listener to this writer that will be notified when new strings are sent.voidclose()voidflush()voidremoveWriterListener(WriterListener writerListener)Removes a writer listener from this writer.voidwrite(char[] cbuf)voidwrite(char[] cbuf, int off, int len)voidwrite(int c)voidwrite(String str)voidwrite(String str, int off, int len)-
Methods inherited from class java.io.Writer
append, append, append, nullWriter
-
-
-
-
Constructor Detail
-
ObservableWriter
public ObservableWriter(Writer wrappedWriter)
-
-
Method Detail
-
write
public void write(char[] cbuf, int off, int len) throws IOException
- Specified by:
writein classWriter- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flushin interfaceFlushable- Specified by:
flushin classWriter- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classWriter- Throws:
IOException
-
write
public void write(int c) throws IOException
- Overrides:
writein classWriter- Throws:
IOException
-
write
public void write(char[] cbuf) throws IOException
- Overrides:
writein classWriter- Throws:
IOException
-
write
public void write(String str) throws IOException
- Overrides:
writein classWriter- Throws:
IOException
-
write
public void write(String str, int off, int len) throws IOException
- Overrides:
writein classWriter- Throws:
IOException
-
addWriterListener
public void addWriterListener(WriterListener writerListener)
Adds a writer listener to this writer that will be notified when new strings are sent.- Parameters:
writerListener- a writer listener.
-
removeWriterListener
public void removeWriterListener(WriterListener writerListener)
Removes a writer listener from this writer.- Parameters:
writerListener- a writer listener.
-
-