diff --git a/src/main/java/org/redisson/RedissonBlockingQueueReactive.java b/src/main/java/org/redisson/RedissonBlockingQueueReactive.java
new file mode 100644
index 000000000..3c3d2c09c
--- /dev/null
+++ b/src/main/java/org/redisson/RedissonBlockingQueueReactive.java
@@ -0,0 +1,111 @@
+/**
+ * Copyright 2014 Nikita Koksharov, Nickolay Borbit
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.redisson;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+import java.util.concurrent.BlockingQueue;
+import java.util.concurrent.LinkedBlockingQueue;
+import java.util.concurrent.TimeUnit;
+
+import org.reactivestreams.Publisher;
+import org.redisson.client.codec.Codec;
+import org.redisson.client.protocol.RedisCommand;
+import org.redisson.client.protocol.RedisCommands;
+import org.redisson.command.CommandReactiveExecutor;
+import org.redisson.connection.decoder.ListDrainToDecoder;
+import org.redisson.core.RBlockingQueueReactive;
+
+/**
+ * Offers blocking queue facilities through an intermediary
+ * {@link LinkedBlockingQueue} where items are added as soon as
+ * blpop
returns. All {@link BlockingQueue} methods are actually
+ * delegated to this intermediary queue.
+ *
+ * @author Nikita Koksharov
+ */
+public class RedissonBlockingQueueReactive extends RedissonQueueReactive implements RBlockingQueueReactive {
+
+ protected RedissonBlockingQueueReactive(CommandReactiveExecutor commandExecutor, String name) {
+ super(commandExecutor, name);
+ }
+
+ protected RedissonBlockingQueueReactive(Codec codec, CommandReactiveExecutor commandExecutor, String name) {
+ super(codec, commandExecutor, name);
+ }
+
+ @Override
+ public Publisher put(V e) {
+ return offer(e);
+ }
+
+ @Override
+ public Publisher take() {
+ return commandExecutor.writeObservable(getName(), codec, RedisCommands.BLPOP_VALUE, getName(), 0);
+ }
+
+ @Override
+ public Publisher poll(long timeout, TimeUnit unit) {
+ return commandExecutor.writeObservable(getName(), codec, RedisCommands.BLPOP_VALUE, getName(), unit.toSeconds(timeout));
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.redisson.core.RBlockingQueueAsync#pollFromAnyAsync(long, java.util.concurrent.TimeUnit, java.lang.String[])
+ */
+ @Override
+ public Publisher pollFromAny(long timeout, TimeUnit unit, String ... queueNames) {
+ List