Android has recently introduced WorkManager for scheduling tasks. One of the powerful feature of this WorkManager is chaining multiple tasks through combine, then and beginWith operators. Data class is being used to send data between these tasks. But After going through the Data and Data.Builder class, I haven't found the way to send Class object through Data class between different tasks, not even through Serializable or Parcelable. How can I send class object between different tasks?
Sending class object through Data class
2k Views Asked by S Haque At
2
There are 2 best solutions below
0

I asked the same question here
@Sagar does point out the correct answer to your question, just posting my answer here for people looking for potential work arounds.
The
Data
is a lightweight container which is a simple key-value map and can only hold values of primitive & Strings along with their String version. It is really meant for light, intermediate transfer of data. It shouldn't be use for and is not capable of holding Serializable or Parcelable objects.Do note, the size of data is limited to 10KB when serialized.