Package io.deephaven.util.channel
Interface SeekableChannelsProviderPlugin
- All Known Implementing Classes:
S3SeekableChannelProviderPlugin
,TrackedSeekableChannelsProviderPlugin
public interface SeekableChannelsProviderPlugin
A plugin interface for providing
SeekableChannelsProvider
implementations for different URI schemes, e.g. S3.
Check out SeekableChannelsProviderLoader
for more details.-
Method Summary
Modifier and TypeMethodDescriptioncreateProvider
(@NotNull URI uri, @Nullable Object object) Create aSeekableChannelsProvider
for the given URI and config object.boolean
isCompatible
(@NotNull URI uri, @Nullable Object config) Check if this plugin is compatible with the given URI and config object.
-
Method Details
-
isCompatible
Check if this plugin is compatible with the given URI and config object. -
createProvider
SeekableChannelsProvider createProvider(@NotNull @NotNull URI uri, @Nullable @Nullable Object object) Create aSeekableChannelsProvider
for the given URI and config object.
-