org.firebirdsql.gds.ng.wire.AsyncFetchStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird Show documentation
Show all versions of jaybird Show documentation
JDBC Driver for the Firebird RDBMS
The newest version!
/*
* Firebird Open Source JDBC Driver
*
* Distributable under LGPL license.
* You may obtain a copy of the License at http://www.gnu.org/copyleft/lgpl.html
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* LGPL License for more details.
*
* This file was created by members of the firebird development team.
* All individual contributions remain the Copyright (C) of those
* individuals. Contributors to this file are either listed here or
* can be obtained from a source control history command.
*
* All rights reserved.
*/
package org.firebirdsql.gds.ng.wire;
import java.sql.SQLException;
import java.util.Optional;
/**
* Asynchronous fetch status.
*
* @author Mark Rotteveel
* @since 6
*/
public sealed interface AsyncFetchStatus
permits AsyncFetchStatus.NonePending, AsyncFetchStatus.Pending {
/**
* Is this a status signalling an async fetch is pending (which includes having completed with an exception).
*
* @return {@code true} if this status is pending
*/
boolean isPending();
/**
* @return exception from the last unsuccessfully completed asynchronous fetch
*/
default Optional exception() {
return Optional.empty();
}
/**
* @return status instance which represents no asynchronous fetch is pending
*/
static AsyncFetchStatus nonePending() {
return NonePending.INSTANCE;
}
/**
* @return status instance which represents a pending asynchronous fetch
*/
static AsyncFetchStatus pending() {
return Pending.INSTANCE;
}
/**
* @return status instance which represents a successfully completed asynchronous fetch (same as
* {@link #nonePending()})
* @see #nonePending()
* @see #completedWithException(SQLException)
*/
static AsyncFetchStatus completed() {
return nonePending();
}
/**
* @param exception
* exception resulting from the asynchronous completion
* @return status instance which represents an asynchronous fetch which completed with an exception; this is
* considered a still pending operation, where the pending action is throwing the exception
*/
static AsyncFetchStatus completedWithException(SQLException exception) {
return new CompletedWithException(exception);
}
/**
* Signals no async fetch pending.
*/
final class NonePending implements AsyncFetchStatus {
private static final NonePending INSTANCE = new NonePending();
private NonePending() {
}
@Override
public boolean isPending() {
return false;
}
}
/**
* Signals an async fetch pending.
*/
@SuppressWarnings("java:S6217")
sealed class Pending implements AsyncFetchStatus permits AsyncFetchStatus.CompletedWithException {
private static final Pending INSTANCE = new Pending();
private Pending() {
}
@Override
public final boolean isPending() {
return true;
}
}
/**
* Signals an async fetch which completed with an exception.
*
* Although the async operation itself completed, this is considered to be still pending, where the completion
* operation is throwing the exception to the caller of a {@code fetch}.
*
*/
@SuppressWarnings("java:S2166")
final class CompletedWithException extends Pending {
private final SQLException completionException;
private CompletedWithException(SQLException completionException) {
this.completionException = completionException;
}
@Override
public Optional exception() {
return Optional.of(completionException);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy