use of datamodel.Person in project hazelcast-jet-reference-manual by hazelcast.
the class ImdgConnectors method s8.
static void s8() {
ClientConfig clientConfig = new ClientConfig();
// tag::s8[]
Pipeline p = Pipeline.create();
p.drawFrom(Sources.<Integer, String, Person>remoteMap("inputMap", clientConfig, e -> e.getValue().getAge() > 21, e -> e.getValue().getAge()));
// end::s8[]
}
Aggregations