@@ -60,7 +60,8 @@ public interface MaterializationStore {
6060 * @throws MaterializationNotSupportedException if the store doesn't support reads (triggers
6161 * fallback to remote gRPC resolution)
6262 */
63- CompletionStage <List <ReadResult >> read (List <? extends ReadOp > ops ) throws MaterializationNotSupportedException ;
63+ CompletionStage <List <ReadResult >> read (List <? extends ReadOp > ops )
64+ throws MaterializationNotSupportedException ;
6465
6566 /**
6667 * Performs a batch write of materialization data.
@@ -69,14 +70,16 @@ public interface MaterializationStore {
6970 * resolution. This includes storing sticky variant assignments and materialized segment
7071 * memberships. Implementations should be idempotent.
7172 *
72- * <p><strong>Default Implementation:</strong> Throws {@link MaterializationNotSupportedException}.
73- * Override this method if you want to support writing materialization data.
73+ * <p><strong>Default Implementation:</strong> Throws {@link
74+ * MaterializationNotSupportedException}. Override this method if you want to support writing
75+ * materialization data.
7476 *
7577 * @param ops the set of write operations to perform, never null
7678 * @return a CompletionStage that completes when all writes are finished
7779 * @throws MaterializationNotSupportedException by default if not overridden
7880 */
79- default CompletionStage <Void > write (Set <? extends WriteOp > ops ) throws MaterializationNotSupportedException {
81+ default CompletionStage <Void > write (Set <? extends WriteOp > ops )
82+ throws MaterializationNotSupportedException {
8083 throw new MaterializationNotSupportedException ();
8184 }
8285
0 commit comments