在 Gridgain 6.0 流媒体示例 StreamingCheckInExample.java 中,config.xml 文件中定义了两个窗口。在以下代码中,窗口的事件类型是 LocationInfo 类型。我想知道窗口事件类型信息在哪里指定?
private static class DetectPlacesStage implements GridStreamerStage<CheckInEvent> {
...
@Nullable @Override public Map<String, Collection<?>> run(GridStreamerContext ctx,
Collection<CheckInEvent> evts) throws GridException {
GridStreamerWindow<LocationInfo> win = ctx.window(name());
...