use of com.google.cloud.hadoop.gcsio.GoogleCloudStorageReadChannel in project beam by apache.
the class GcsUtilTest method testGCSChannelCloseIdempotent.
@Test
public void testGCSChannelCloseIdempotent() throws IOException {
SeekableByteChannel channel = new GoogleCloudStorageReadChannel(null, "dummybucket", "dummyobject", null, new ClientRequestHelper<StorageObject>());
channel.close();
channel.close();
}
Aggregations