Interface ReposNotifyCallback
-
- All Superinterfaces:
java.util.EventListener
public interface ReposNotifyCallback extends java.util.EventListener
Subversion notification interface. Implement this interface to provide a custom notification handler to the SVNClient class. If you need to pass extra information to the notification handler add it to your implementing class.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onNotify(ReposNotifyInformation info)
Handler for Subversion notifications.
-
-
-
Method Detail
-
onNotify
void onNotify(ReposNotifyInformation info)
Handler for Subversion notifications. Override this function to allow Subversion to send notifications- Parameters:
info
- everything to know about this event
-
-