All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lontime.shaded.org.redisson.reactive.RedissonTransferQueueReactive Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2013-2021 Nikita Koksharov
 *
 * 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 com.github.lontime.shaded.org.redisson.reactive;

import org.reactivestreams.Publisher;
import com.github.lontime.shaded.org.redisson.RedissonTransferQueue;
import com.github.lontime.shaded.org.redisson.api.RFuture;
import reactor.core.publisher.Flux;
import reactor.core.publisher.FluxSink;

import java.util.function.Consumer;
import java.util.function.LongConsumer;

/**
 * 
 * @author Nikita Koksharov
 *
 * @param  - value type
 */
public class RedissonTransferQueueReactive {

    private final RedissonTransferQueue queue;

    public RedissonTransferQueueReactive(RedissonTransferQueue queue) {
        this.queue = queue;
    }

    public Flux takeElements() {
        return ElementsStream.takeElements(queue::takeAsync);
    }

    public Publisher iterator() {
        return Flux.create(new Consumer>() {

            @Override
            public void accept(FluxSink emitter) {
                emitter.onRequest(new LongConsumer() {

                    int currentIndex = 0;

                    @Override
                    public void accept(long value) {
                        onRequest(true, emitter, value);
                    }

                    protected void onRequest(boolean forward, FluxSink emitter, long n) {
                        queue.getValueAsync(currentIndex).whenComplete((value, e) -> {
                                if (e != null) {
                                    emitter.error(e);
                                    return;
                                }

                                if (value != null) {
                                    emitter.next(value);
                                    if (forward) {
                                        currentIndex++;
                                    } else {
                                        currentIndex--;
                                    }
                                }

                                if (value == null) {
                                    emitter.complete();
                                    return;
                                }
                                if (n-1 == 0) {
                                    return;
                                }
                                onRequest(forward, emitter, n-1);
                        });
                    }
                });

            }

        });
    }

    public Publisher addAll(Publisher c) {
        return new PublisherAdder() {

            @Override
            public RFuture add(Object o) {
                return queue.addAsync((V) o);
            }

        }.addAll(c);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy