refactoring

pull/1854/head
Nikita Koksharov 6 years ago
parent c89617ce47
commit 0f85ab7f4b

@ -81,13 +81,11 @@ import jodd.bean.BeanUtil;
import net.bytebuddy.ByteBuddy;
import net.bytebuddy.description.field.FieldDescription;
import net.bytebuddy.description.field.FieldDescription.InDefinedShape;
import net.bytebuddy.description.type.TypeDescription;
import net.bytebuddy.description.field.FieldList;
import net.bytebuddy.dynamic.DynamicType;
import net.bytebuddy.dynamic.loading.ClassLoadingStrategy;
import net.bytebuddy.implementation.MethodDelegation;
import net.bytebuddy.implementation.bind.annotation.FieldProxy;
import net.bytebuddy.matcher.ElementMatcher;
import net.bytebuddy.matcher.ElementMatchers;
public class RedissonLiveObjectService implements RLiveObjectService {

@ -18,7 +18,7 @@ package org.redisson.api;
import java.util.concurrent.TimeUnit;
/**
* Configuration for Batch objecct.
* Configuration for Batch object.
*
* @author Nikita Koksharov
*

@ -978,11 +978,14 @@ public interface RedissonClient {
*/
RBatch createBatch(BatchOptions options);
/*
* Use #createBatch(BatchOptions)
/**
* Creates batch object which could be executed later
* with collected group of commands in pipeline mode.
* <p>
* See <a href="http://redis.io/topics/pipelining">http://redis.io/topics/pipelining</a>
*
* @return Batch object
*/
@Deprecated
RBatch createBatch();
/**

Loading…
Cancel
Save