in src/main/java/org/apache/flink/benchmark/SerializationFrameworkMiniBenchmarks.java [377:394]
public MyPojo(
int id,
String name,
String[] operationNames,
MyOperation[] operations,
int otherId1,
int otherId2,
int otherId3,
Object someObject) {
this.id = id;
this.name = name;
this.operationNames = operationNames;
this.operations = operations;
this.otherId1 = otherId1;
this.otherId2 = otherId2;
this.otherId3 = otherId3;
this.someObject = someObject;
}