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

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

package org.gridkit.jvmtool.event;

import java.io.InputStream;

public interface DecoderFactory {

    public boolean canHandle(String magic, Class eventType);

    public  EventReader createEventReader(String magic, InputStream stream, Class eventType, ErrorHandler handler);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy