Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经浏览了 Java SDK 文档,但要么遗漏了一些明显的东西,要么没有看到。布尔值的合适编码器是什么?这似乎足够基本,我假设前者是这种情况。
Serializable默认情况下,诸如布尔值之类的类使用SerializableCoder. 在大多数情况下,它应该可以工作,除非您需要按布尔值分组(然后您会收到一个错误,即它不是确定性编码器,您必须自己实现一个)。
Serializable
SerializableCoder