We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f21b2d commit 456b553Copy full SHA for 456b553
core/common/src/main/java/alluxio/client/file/URIStatus.java
@@ -22,6 +22,7 @@
22
import com.google.common.base.MoreObjects;
23
import com.google.common.base.Preconditions;
24
25
+import java.io.Serializable;
26
import java.util.List;
27
import java.util.Map;
28
import java.util.Objects;
@@ -37,7 +38,7 @@
37
38
*/
39
@PublicApi
40
@ThreadSafe
-public class URIStatus {
41
+public class URIStatus implements Serializable {
42
/** Information about this URI retrieved from Alluxio master. */
43
private final FileInfo mInfo;
44
/** Context associated with this URI, possibly set by other external engines (e.g., presto). */
0 commit comments