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

org.zalando.riptide.concurrent.ForwardingBlockingQueue Maven / Gradle / Ivy

package org.zalando.riptide.concurrent;

import lombok.experimental.Delegate;

import java.util.concurrent.BlockingQueue;

abstract class ForwardingBlockingQueue implements BlockingQueue {

    @Delegate
    protected abstract BlockingQueue delegate();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy