x-kreator commented on a change in pull request #7572: IGNITE-12835 Thin 
client: compute support
URL: https://github.com/apache/ignite/pull/7572#discussion_r403911059
 
 

 ##########
 File path: 
modules/core/src/main/java/org/apache/ignite/internal/client/thin/ClientOperation.java
 ##########
 @@ -56,14 +60,26 @@
     /** Put binary type. */PUT_BINARY_TYPE(3003),
     /** Get binary type name. */GET_BINARY_TYPE_NAME(3000),
     /** Start new transaction. */TX_START(4000),
-    /** End the transaction (commit or rollback). */TX_END(4001);
+    /** End the transaction (commit or rollback). */TX_END(4001),
+    /** Execute compute task. */COMPUTE_TASK_EXECUTE(6000),
+    /** Finished compute task notification. */COMPUTE_TASK_FINISHED(6001, 
true);
 
     /** Code. */
     private final int code;
 
+    /** Is notification. */
+    private final boolean notification;
+
     /** Constructor. */
     ClientOperation(int code) {
         this.code = code;
 
 Review comment:
   this(code, false) will look better

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to