本文整理了Java中com.apollographql.apollo.api.internal.Utils.areDisjoint()
方法的一些代码示例,展示了Utils.areDisjoint()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Utils.areDisjoint()
方法的具体详情如下:
包路径:com.apollographql.apollo.api.internal.Utils
类名称:Utils
方法名:areDisjoint
[英]Checks if two Set are disjoint. Returns true if the sets don't have a single common element. Also returns true if either of the sets is null.
[中]检查两个集合是否不相交。如果集合没有单个公共元素,则返回true。如果两个集合中的任何一个都为空,则返回true。
代码示例来源:origin: apollographql/apollo-android
@Override public void onCacheRecordsChanged(Set<String> changedRecordKeys) {
if (dependentKeys.isEmpty() || !Utils.areDisjoint(dependentKeys, changedRecordKeys)) {
refetch();
}
}
};
代码示例来源:origin: awslabs/aws-mobile-appsync-sdk-android
@Override public void onCacheRecordsChanged(Set<String> changedRecordKeys) {
if (!Utils.areDisjoint(dependentKeys, changedRecordKeys)) {
refetch();
}
}
};
代码示例来源:origin: com.amazonaws/aws-android-sdk-appsync-runtime
@Override public void onCacheRecordsChanged(Set<String> changedRecordKeys) {
if (!Utils.areDisjoint(dependentKeys, changedRecordKeys)) {
refetch();
}
}
};
内容来源于网络,如有侵权,请联系作者删除!