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

com.terheyden.event.QueryEventRequest Maven / Gradle / Ivy

The newest version!
package com.terheyden.event;

/**
 * QueryEventRequest class.
 */
class QueryEventRequest extends EventRequest {

    private final CheckedConsumer callback;

    QueryEventRequest(I eventObj, CheckedConsumer callback) {
        super(eventObj);
        this.callback = callback;
    }

    CheckedConsumer getCallback() {
        return callback;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy