forked from deephaven/deephaven-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Round two, commit #1, apply the same to chunkinputstreamgenerator
- Loading branch information
Showing
8 changed files
with
229 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...src/main/java/io/deephaven/extensions/barrage/chunk/ChunkInputStreamGeneratorFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// | ||
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending | ||
// | ||
package io.deephaven.extensions.barrage.chunk; | ||
|
||
import io.deephaven.chunk.Chunk; | ||
import io.deephaven.chunk.ChunkType; | ||
import io.deephaven.chunk.attributes.Values; | ||
|
||
/** | ||
* | ||
*/ | ||
public interface ChunkInputStreamGeneratorFactory { | ||
/** | ||
* | ||
* @param chunkType | ||
* @param type | ||
* @param componentType | ||
* @param chunk | ||
* @param rowOffset | ||
* @return | ||
* @param <T> | ||
*/ | ||
<T> ChunkInputStreamGenerator makeInputStreamGenerator( | ||
final ChunkType chunkType, | ||
final Class<T> type, | ||
final Class<?> componentType, | ||
final Chunk<Values> chunk, | ||
final long rowOffset); | ||
} |
Oops, something went wrong.