File tree Expand file tree Collapse file tree
gcloud-java-storage/src/main/java/com/google/gcloud/storage Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626/**
2727 * A channel for reading data from a Google Cloud Storage object.
2828 *
29- * Implementations of this class may buffer data internally to reduce remote calls.
30- *
31- * This class is @{link Serializable}, which allows incremental reads.
29+ * Implementations of this class may buffer data internally to reduce remote calls. This interface
30+ * implements {@link Restorable} to allow saving the reader's state to continue reading afterwards.
3231 */
3332public interface BlobReadChannel extends ReadableByteChannel , Closeable ,
3433 Restorable <BlobReadChannel > {
Original file line number Diff line number Diff line change 2626 * A channel for writing data to a Google Cloud Storage object.
2727 *
2828 * Implementations of this class may further buffer data internally to reduce remote calls. Written
29- * data will only be visible after calling {@link #close()}. This class is serializable, to allow
30- * incremental writes .
29+ * data will only be visible after calling {@link #close()}. This interface implements
30+ * {@link Restorable} to allow saving the writer's state to continue writing afterwards .
3131 */
3232public interface BlobWriteChannel extends WritableByteChannel , Closeable ,
3333 Restorable <BlobWriteChannel > {
You can’t perform that action at this time.
0 commit comments