did/did-sdk/src/main/java/io/github/ehlxr/did/client/InvokeCallback.java

15 lines
265 B
Java

package io.github.ehlxr.did.client;
/**
* @author ehlxr
*/
public interface InvokeCallback {
/**
* 异步回调处理方法
*
* @param responseFuture {@link ResponseFuture}
*/
void operationComplete(ResponseFuture responseFuture);
}