blob: f64a1db159990ffa0df7f1b32d95aa219368886d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.samza.operators.triggers;
import org.apache.samza.SamzaException;
import org.apache.samza.operators.impl.TriggerKey;
import org.apache.samza.util.Clock;
/**
* Factory methods for instantiating {@link TriggerImpl}s from individual {@link Trigger}s.
*/
public class TriggerImpls {
public static <M, WK> TriggerImpl<M, WK> createTriggerImpl(Trigger<M> trigger, Clock clock, TriggerKey<WK> triggerKey) {
if (trigger == null) {
throw new IllegalArgumentException("Trigger must not be null");
}
if (trigger instanceof CountTrigger) {
return new CountTriggerImpl<>((CountTrigger<M>) trigger, triggerKey);
} else if (trigger instanceof RepeatingTrigger) {
return new RepeatingTriggerImpl<>((RepeatingTrigger<M>) trigger, clock, triggerKey);
} else if (trigger instanceof AnyTrigger) {
return new AnyTriggerImpl<>((AnyTrigger<M>) trigger, clock, triggerKey);
} else if (trigger instanceof TimeSinceLastMessageTrigger) {
return new TimeSinceLastMessageTriggerImpl<>((TimeSinceLastMessageTrigger<M>) trigger, clock, triggerKey);
} else if (trigger instanceof TimeTrigger) {
return new TimeTriggerImpl((TimeTrigger<M>) trigger, clock, triggerKey);
} else if (trigger instanceof TimeSinceFirstMessageTrigger) {
return new TimeSinceFirstMessageTriggerImpl<>((TimeSinceFirstMessageTrigger<M>) trigger, clock, triggerKey);
}
throw new SamzaException("No implementation class defined for the trigger " + trigger.getClass().getCanonicalName());
}
}