我正在使用Zapier Firestore触发器来执行一些任务。但是,我无法获得新记录。我找不到调用setWithPriority并使用Firebase.ServerValue.TIMESTAMP按时间戳排序的方法。
这是我当前的结构化查询
Map<String, Set<Long>> map = personList.stream()
.collect(Collectors.groupingBy(Person::getDepartment, Collectors.mapping(Person::getTimestamp,
Collectors.toCollection(TreeSet::new)));
任何建议都会有所帮助。
最好
Shashi Kiran