Skip to content

Commit a3b26c7

Browse files
committed
Make two reader methods public so they can be accessed from web
1 parent ede47c8 commit a3b26c7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/barrage/src/main/java/io/deephaven/extensions/barrage/chunk/FixedWidthChunkInputStreamGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface TypeConversion<T> {
4040
* @param <T> the result type
4141
* @return the resulting chunk of the buffer that is read
4242
*/
43-
static <T> WritableObjectChunk<T, Values> extractChunkFromInputStreamWithTypeConversion(
43+
public static <T> WritableObjectChunk<T, Values> extractChunkFromInputStreamWithTypeConversion(
4444
final int elementSize,
4545
final StreamReaderOptions options,
4646
final TypeConversion<T> conversion,

extensions/barrage/src/main/java/io/deephaven/extensions/barrage/chunk/VarBinaryChunkInputStreamGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ public int drainTo(final OutputStream outputStream) throws IOException {
396396
}
397397
}
398398

399-
static <T> WritableObjectChunk<T, Values> extractChunkFromInputStream(
399+
public static <T> WritableObjectChunk<T, Values> extractChunkFromInputStream(
400400
final DataInput is,
401401
final Iterator<FieldNodeInfo> fieldNodeIter,
402402
final PrimitiveIterator.OfLong bufferInfoIter,

0 commit comments

Comments
 (0)