This doesn't work but I'm looking for an equivalent of this, which is
described here:
https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/IgniteBinary.html
<property name="marshaller">
<bean class="org.apache.ignite.marshaller.binary.BinaryMarshaller">
<property name="classNames">
<list>
<value>org.apache.ignite.examples.client.binary.Employee</value>
</list>
</property>
</bean>
</property>
On Tue, Dec 12, 2017 at 11:25 AM, John Wilson <[email protected]>
wrote:
> Hi,
>
> How do I register a class, in the XML config file, to be used by the
> Binary Marshaller?
>
> Assume I have IgniteCache<Integer, Point>, I want the xml config
> equivalent for:
>
> binaryMarsh.context().descriptorForClass(Point.class, false)
>
>
> Thanks,
>