The meaning of Synchronous / Asynchronous in prpcServiceUtils
Hi,
Can someone give some details about Synchronous / Asynchronous when using prpcServiceUtils import & export? Below is the information from Help.

Question #1: Is Kafka Stream service related here? My guess is, Asynchronous uses Kafka and Synchronous does not use Kafka. Am I right?
Question #2: The default of prpcServiceUtils mode is Asynchronous. But in this case we need to run one more additional getStatus operation, that is cumbersome. Why is Asynchronous the default? I think Synchronous is one operation and quick, so shouldn't Synchronous be the default?

***Edited by Moderator Marije to add Capability tags***
@CloeW938 The Synchronous / Asynchronous option in prpcServiceUtils uses the queueBatchActivity() method to spawn a parallel requestor for the export and import activity.
So to your questions , for question #1 it's just a parallel requestor not a stream service .
and to question #2 I guess sync and async both have their advantages and disadvantages , async provides a non blocking mode of execution so if the export takes a long time then the calling process is not blocked but as you indicated on the flip side you need to make another call to get the status.
If you are interested have a look at the activity pzExportServiceJSONWrapper this is what is called internally by prpcServiceUtils for export operation