Sha256: 5472ecf30856a39b465822196442a61d1d650fa43e3e8f8f1a312619b379765c
Contents?: true
Size: 707 Bytes
Versions: 115
Compression:
Stored size: 707 Bytes
Contents
package org.embulk.spi.util; import java.io.InputStream; import org.embulk.spi.TransactionalFileInput; import org.embulk.spi.BufferAllocator; public abstract class InputStreamTransactionalFileInput extends InputStreamFileInput implements TransactionalFileInput { public InputStreamTransactionalFileInput(BufferAllocator allocator, Provider provider) { super(allocator, provider); } public InputStreamTransactionalFileInput(BufferAllocator allocator, Opener opener) { super(allocator, opener); } public InputStreamTransactionalFileInput(BufferAllocator allocator, InputStream openedStream) { super(allocator, openedStream); } }
Version data entries
115 entries across 115 versions & 1 rubygems