/* * Decompiled with CFR 0.152. */ package com.google.common.util.concurrent; import com.google.common.collect.ForwardingQueue; import java.util.Collection; import java.util.concurrent.BlockingQueue; import java.util.concurrent.TimeUnit; public abstract class ForwardingBlockingQueue extends ForwardingQueue implements BlockingQueue { protected ForwardingBlockingQueue() { } @Override protected abstract BlockingQueue delegate(); @Override public int drainTo(Collection c, int maxElements) { return this.delegate().drainTo(c, maxElements); } @Override public int drainTo(Collection c) { return this.delegate().drainTo(c); } @Override public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException { return this.delegate().offer(e, timeout, unit); } @Override public E poll(long timeout, TimeUnit unit) throws InterruptedException { return this.delegate().poll(timeout, unit); } @Override public void put(E e) throws InterruptedException { this.delegate().put(e); } @Override public int remainingCapacity() { return this.delegate().remainingCapacity(); } @Override public E take() throws InterruptedException { return this.delegate().take(); } }