在我的项目中,我使用WorkManager
. 但我有几个问题。
1)如何获取当前所有正在运行的任务的列表?
2)如何通过Data.Builder ()
非原始数据类型进行传输?例如,对 Item 类实例的引用:
public class Item {
private String path;
private String type;
private String name;
private int size;
private float radius;
public Item(String path, String type, String name, int size, float radius) {
this.path = path;
this.type = type;
this.name = name;
this.size = size;
this.radius = radius;
}}
可能,有必要将传输的对象序列化为JSON
并传输为String
?还有其他方法吗?