Package org.jivesoftware.smack.util
Interface WriterListener
-
public interface WriterListener
Interface that allows for implementing classes to listen for string writing events. Listeners are registered with ObservableWriter objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
write(java.lang.String str)
Notification that the Writer has written a new string.
-
-
-
Method Detail
-
write
void write(java.lang.String str)
Notification that the Writer has written a new string.- Parameters:
str
- the written string
-
-