All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gridkit.jvmtool.event.EventReader Maven / Gradle / Ivy

There is a newer version: 0.23
Show newest version
package org.gridkit.jvmtool.event;

import java.util.Iterator;

/**
 * This interface is used to iterate though event sequence.
 *
 * @author Alexey Ragozin ([email protected])
 */
public interface EventReader extends Iterable, Iterator {

    public  EventReader morph(EventMorpher morpher);

    /**
     * Return next element without advancing iterator.
     */
    public T peekNext();

    public void dispose();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy