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

com.apple.foundationdb.record.cursors.EmptyCursor Maven / Gradle / Ivy

There is a newer version: 2.8.110.0
Show newest version
/*
 * EmptyCursor.java
 *
 * This source file is part of the FoundationDB open source project
 *
 * Copyright 2015-2018 Apple Inc. and the FoundationDB project authors
 *
 * 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.apple.foundationdb.record.cursors;

import com.apple.foundationdb.annotation.API;
import com.apple.foundationdb.record.RecordCursor;
import com.apple.foundationdb.record.RecordCursorResult;
import com.apple.foundationdb.record.RecordCursorVisitor;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.NoSuchElementException;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Executor;

/**
 * A {@link RecordCursor} that always returns zero items.
 * @param  the type of elements of the cursor
 */
@API(API.Status.MAINTAINED)
public class EmptyCursor implements RecordCursor {
    @Nonnull
    private final Executor executor;

    public EmptyCursor(@Nonnull Executor executor) {
        this.executor = executor;
    }

    @Nonnull
    @Override
    public CompletableFuture> onNext() {
        return CompletableFuture.completedFuture(RecordCursorResult.exhausted());
    }

    @Nonnull
    @Override
    public RecordCursorResult getNext() {
        return RecordCursorResult.exhausted();
    }

    @Nonnull
    @Override
    @Deprecated
    public CompletableFuture onHasNext() {
        return CompletableFuture.completedFuture(Boolean.FALSE);
    }

    @Nullable
    @Override
    @Deprecated
    public T next() {
        throw new NoSuchElementException();
    }

    @Nullable
    @Override
    @Deprecated
    public byte[] getContinuation() {
        return null;
    }

    @Nonnull
    @Override
    @Deprecated
    public NoNextReason getNoNextReason() {
        return NoNextReason.SOURCE_EXHAUSTED;
    }

    @Override
    public void close() {
        // Nothing to do.
    }

    @Nonnull
    @Override
    public Executor getExecutor() {
        return executor;
    }

    @Override
    public boolean accept(@Nonnull RecordCursorVisitor visitor) {
        visitor.visitEnter(this);
        return visitor.visitLeave(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy