blob: e16efff02a593b8b5b33187a702db419a6a58372 [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.heron.resource;
import java.util.Map;
import java.util.concurrent.CountDownLatch;
import org.apache.heron.api.bolt.BaseRichBolt;
import org.apache.heron.api.bolt.OutputCollector;
import org.apache.heron.api.state.State;
import org.apache.heron.api.topology.IStatefulComponent;
import org.apache.heron.api.topology.OutputFieldsDeclarer;
import org.apache.heron.api.topology.TopologyContext;
import org.apache.heron.api.tuple.Tuple;
import org.apache.heron.common.basics.SingletonRegistry;
public class TestStatefulBolt extends BaseRichBolt
implements IStatefulComponent<String, String> {
@Override
public void prepare(
Map<String, Object> heronConf,
TopologyContext context,
OutputCollector collector) {
}
@Override
public void execute(Tuple input) {
CountDownLatch tupleExecutedLatch =
(CountDownLatch) SingletonRegistry.INSTANCE.getSingleton(Constants.EXECUTE_LATCH);
if (tupleExecutedLatch != null) {
tupleExecutedLatch.countDown();
}
}
@Override
public void initState(State<String, String> state) {
}
@Override
public void preSave(String checkpointId) {
CountDownLatch preSaveLatch =
(CountDownLatch) SingletonRegistry.INSTANCE.getSingleton(Constants.PRESAVE_LATCH);
if (preSaveLatch != null) {
preSaveLatch.countDown();
}
}
@Override
public void declareOutputFields(OutputFieldsDeclarer declarer) {
}
}