com.terheyden.event.QueryEventRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of event-router Show documentation
Show all versions of event-router Show documentation
Simple, fast, flexible event router / event bus for Java
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;
}
}