You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gcloud-java-contrib/gcloud-java-nio/src/main/java/com/google/cloud/storage/contrib/nio/CloudStorageConfiguration.java
+4-3
Original file line number
Diff line number
Diff line change
@@ -82,8 +82,9 @@ public static final class Builder {
Copy file name to clipboardExpand all lines: gcloud-java-contrib/gcloud-java-nio/src/main/java/com/google/cloud/storage/contrib/nio/CloudStorageFileSystem.java
+24-6
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,8 @@
37
37
38
38
importjavax.annotation.Nullable;
39
39
importjavax.annotation.concurrent.Immutable;
40
+
importjavax.annotation.CheckReturnValue;
41
+
importjavax.annotation.concurrent.ThreadSafe;
40
42
41
43
/**
42
44
* Google Cloud Storage {@link FileSystem} implementation.
Copy file name to clipboardExpand all lines: gcloud-java-contrib/gcloud-java-nio/src/main/java/com/google/cloud/storage/contrib/nio/CloudStorageFileSystemProvider.java
+19-6
Original file line number
Diff line number
Diff line change
@@ -69,10 +69,16 @@
69
69
importjava.util.Set;
70
70
importjavax.annotation.Nullable;
71
71
importjavax.annotation.concurrent.ThreadSafe;
72
+
importjavax.inject.Singleton;
72
73
73
74
/**
74
75
* Google Cloud Storage {@link FileSystemProvider} implementation.
76
+
*
77
+
* <p><b>Note:</b> This class should never be used directly. This class is instantiated by the
78
+
* service loader and called through a standardized API, e.g. {@link java.nio.file.Files}. However
79
+
* the javadocs in this class serve as useful documentation for the behavior of the GCS NIO library.
0 commit comments