You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2022/02/26 05:43:26 UTC

[GitHub] [iotdb] Cpaulyz commented on a change in pull request #5123: [To new_sync][IOTDB-1907] implement customized sync process: pipeDataQueue

Cpaulyz commented on a change in pull request #5123:
URL: https://github.com/apache/iotdb/pull/5123#discussion_r815272277



##########
File path: server/src/main/java/org/apache/iotdb/db/newsync/pipedata/queue/PipeDataQueue.java
##########
@@ -0,0 +1,17 @@
+package org.apache.iotdb.db.newsync.pipedata.queue;
+
+import org.apache.iotdb.db.newsync.pipedata.PipeData;
+
+import java.util.List;
+
+public interface PipeDataQueue {
+    boolean offer(PipeData data);
+
+    List<PipeData> pull(long serialNumber);

Review comment:
       Add some descriptions for these interfaces plz.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: reviews-unsubscribe@iotdb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org