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