पाइपलाइन निष्पादन विधि रिटर्न
Response<List<?>>
जबकि सिंक रिटर्न शून्य , हालांकि, सिंक का उपयोग करके पाइपलाइन से प्रतिक्रिया प्राप्त करने के लिए आपको अलग-अलग प्रतिक्रियाओं को कैप्चर करना होगा, कुछ इस तरह।
Response<Long> isDeleted = pipeline.del("test-1");
Response<Long> isSuccess = pipeline.hset("test-2", "a", "b");
Response<List<String>> hvals = pipeline.hvals("test-2");
pipeline.sync();
assertEquals(1, (long) isDeleted.get());