org.freehep.util.io
Interface RouteListener
public interface RouteListener
Listener to inform that a specific route of the RoutedInputStream has been
found.
- Version:
- $Id: RouteListener.java 8584 2006-08-10 23:06:37Z duns $
- Author:
- Mark Donszelmann
routeFound
void routeFound(RoutedInputStream.Route input)
throws IOException
- Route was found, input is supplied. If you close the Route, all remaining
bytes will be read/discarded up to and including the end marker. If the
end marker is null, all bytes from the underling stream will be read. If
you just return, the underlying main stream will still return every byte
in this route. This way you can just be informed of the start of a route.
- Parameters:
input
- stream to read
- Throws:
IOException
- if read fails
Copyright © 2000-2007 FreeHEP. All Rights Reserved.