acelyc111 commented on code in PR #1019:
URL: https://github.com/apache/incubator-pegasus/pull/1019#discussion_r909186933
##########
java-client/src/main/java/org/apache/pegasus/client/PegasusScanner.java:
##########
@@ -88,9 +88,27 @@ public PegasusScanner(
_needCheckHash = needCheckHash;
_incomplete = false;
_fullScan = fullScan;
+ _nextItem = null;
+ }
+
+ public boolean hasNext() throws PException {
+ synchronized (_promisesLock) {
+ if (_nextItem != null) {
+ return true;
+ }
+ }
+ _nextItem = next();
Review Comment:
It's not thread safe in some cases since `_nextItem` will be overwritten.
```
time thread1 thread2
t1 hasNext hasNext
t2 _nextItem = a
t3 _nextItem = b
t4 next -> b
t5 next -> nullptr
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]