/* * Copyright 2011 LMAX Ltd. * * 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.lmax.disruptor; /** * Abstraction for claiming {@link AbstractEntry}s in a {@link RingBuffer} while tracking dependent {@link Consumer}s. * * This barrier can be used to pre-fill a {@link RingBuffer} but only when no other producers are active. * * @param <T> {@link AbstractEntry} implementation stored in the {@link RingBuffer} */ public interface ForceFillProducerBarrier<T extends AbstractEntry> { /** * Claim a specific sequence in the {@link RingBuffer} when only one producer is involved. * * @param sequence to be claimed. * @return the claimed {@link AbstractEntry} */ T claimEntry(long sequence); /** * Commit an entry back to the {@link RingBuffer} to make it visible to {@link Consumer}s. * Only use this method when forcing a sequence and you are sure only one producer exists. * This will cause the {@link RingBuffer} to advance the {@link RingBuffer#getCursor()} to this sequence. * * @param entry to be committed back to the {@link RingBuffer} */ void commit(T entry); /** * Delegate a call to the {@link RingBuffer#getCursor()} * * @return value of the cursor for entries that have been published. */ long getCursor(); }