If I were to do this, it would mean that peerClassLoading cannot work with
scan queries, as the class, POJO in this case, should be known on the server
node side.
Instead, like this, it works:
@Override
public boolean apply(Integer e1, BinaryObject e2) {
        SimplePojo sp = e2.deserialize(SimplePojo.class.getClassLoader());
        return sp.getId().equals(idToFind);
}
look this:
e2.deserialize(SimplePojo.class.getClassLoader());



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to