This commit is contained in:
Stefan Saroiu 2018-03-13 15:42:55 -07:00 коммит произвёл Stefan Saroiu
Родитель 1b000fee12
Коммит 892ae14395
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -210,7 +210,7 @@ public final class EmbeddedSocialBatchedClientImpl {
processBatchResponse(batchResponse);
// Notify the individual interceptors to resume
syncObject.notify();
syncObject.notifyAll();
}
}

Просмотреть файл

@ -11,7 +11,7 @@ public class Main {
public static void main(String[] args) {
SyncExample syncExample = new SyncExample(ESUrl);
AsyncExample asyncExample = new AsyncExample(ESUrl);
BatchedExample batchedExample = new BatchedExample(ESUrl, 2);
BatchedExample batchedExample = new BatchedExample(ESUrl, 5);
// syncExample makes single synchronous call
syncExample.run();