Hello.

Is it possible to create a filter to find data inside typed List?

*Example: *

class Foo {
    Integer id;
}

*Query: *
ScanQuery<Integer, List&lt;Foo>> filter = new ScanQuery<>(
     (IgniteBiPredicate<Integer, List&lt;Foo>>) (key, list) -> ...
);

So, is it possible to find inside List<Foo> just records where
foo.getId().equals(some id)?

Thanks.





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

Reply via email to