In my application, I need to perform multiple NFC-A tag reads with NfcA.transceive()
Also, the app needs to perform slow API calls associated with the different read data
Therefore, I am running Callables on separate threads to handle the various read->API tasks.
Is this a safe approach? The transceive comment string says that
This is an I/O operation and will block until complete.
Does this ensure that my calls to transceive (from different threads) will not interfere with each other?