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

co.paralleluniverse.strands.queues.CircularDoubleBuffer Maven / Gradle / Ivy

/*
 * Quasar: lightweight threads and actors for the JVM.
 * Copyright (c) 2013-2014, Parallel Universe Software Co. All rights reserved.
 * 
 * This program and the accompanying materials are dual-licensed under
 * either the terms of the Eclipse Public License v1.0 as published by
 * the Eclipse Foundation
 *  
 *   or (per the licensee's choosing)
 *  
 * under the terms of the GNU Lesser General Public License version 3.0
 * as published by the Free Software Foundation.
 */
package co.paralleluniverse.strands.queues;

/**
 *
 * @author pron
 */
public class CircularDoubleBuffer extends CircularDWordBuffer implements BasicSingleConsumerDoubleQueue {
    public CircularDoubleBuffer(int size, boolean singleProducer) {
        super(size, singleProducer);
    }

    @Override
    public boolean enq(Double elem) {
        return enq(elem.doubleValue());
    }

    @Override
    public boolean enq(double elem) {
        enqRaw(Double.doubleToRawLongBits(elem));
        return true;
    }

    @Override
    public double pollDouble() {
        return ((DoubleConsumer) consumer).pollDouble();
    }

    @Override
    public DoubleConsumer newConsumer() {
        return new DoubleConsumer();
    }

    public class DoubleConsumer extends DWordConsumer {
        public double getDoubleValue() {
            return Double.longBitsToDouble(getRawValue());
        }

        @Override
        protected Double getValue() {
            return getDoubleValue();
        }

        public double pollDouble() {
            poll0();
            return getDoubleValue();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy