io.deephaven.client.impl.FlightSessionConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-java-client-flight Show documentation
Show all versions of deephaven-java-client-flight Show documentation
The Deephaven client flight library
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.client.impl;
import io.deephaven.annotations.BuildableStyle;
import org.apache.arrow.memory.BufferAllocator;
import org.immutables.value.Value.Immutable;
import java.util.Optional;
@Immutable
@BuildableStyle
public abstract class FlightSessionConfig {
public static Builder builder() {
return ImmutableFlightSessionConfig.builder();
}
/**
* The session config.
*/
public abstract Optional sessionConfig();
/**
* The allocator.
*/
public abstract Optional allocator();
public interface Builder {
Builder sessionConfig(SessionConfig sessionConfig);
Builder allocator(BufferAllocator allocator);
FlightSessionConfig build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy