Skip to content

Instantly share code, notes, and snippets.

@sanderploegsma
Created January 31, 2018 18:37
Show Gist options
  • Save sanderploegsma/f71603b37fac7885397844f5d48f9dad to your computer and use it in GitHub Desktop.
Save sanderploegsma/f71603b37fac7885397844f5d48f9dad to your computer and use it in GitHub Desktop.
class BeamExamples {
public fun filterByAge(input: PCollection<Person>, age: Int)
= input.apply("Filter by age", Filter.by(SerializableFunction<Person, Boolean> { it.age >= age })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment