パイプライン実行メソッドは
を返します
Response<List<?>>
一方、syncは voidを返します ただし、同期を使用してパイプラインから応答を取得するには、次のような個々の応答をキャプチャする必要があります。
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());