Create RedisPipelineCallBack.java

pull/60/head
jujiyfb 2 years ago committed by GitHub
parent 20e5bf4823
commit d32911f156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,23 @@
package com.java3y.austin.stream.callback;
import io.lettuce.core.RedisFuture;
import io.lettuce.core.api.async.RedisAsyncCommands;
import java.util.List;
/**
* redis pipeline
*
* @author 3y
*/
public interface RedisPipelineCallBack {
/**
*
*
* @param redisAsyncCommands
* @return
*/
List<RedisFuture<?>> invoke(RedisAsyncCommands redisAsyncCommands);
}
Loading…
Cancel
Save