org.piax.gtrans.ov.ring.rq.RQExecQueryCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of piax-compat Show documentation
Show all versions of piax-compat Show documentation
A backward compatibility package for PIAX
The newest version!
/*
* RQExecQueryCallback.java - RQExecQueryCallback implementation.
*
* Copyright (c) 2015 Kota Abe / PIAX development team
*
* You can redistribute it and/or modify it under either the terms of
* the AGPLv3 or PIAX binary code license. See the file COPYING
* included in the PIAX package for more in detail.
*
* $Id: SGExecQueryCallback.java 1176 2015-05-23 05:56:40Z teranisi $
*/
package org.piax.gtrans.ov.ring.rq;
import org.piax.gtrans.RemoteValue;
/**
* The interface of exec-query callback.
*/
public interface RQExecQueryCallback {
RemoteValue> rqExecQuery(Comparable> key, Object query);
}