blob: 75281ad0be4dbce0ee2204d94460401230a88edd [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.nutch.publisher;
import org.apache.hadoop.conf.Configurable;
import org.apache.hadoop.conf.Configuration;
import org.apache.nutch.plugin.Pluggable;
/**
* All publisher subscriber model implementations should implement this interface.
*
*/
public interface NutchPublisher extends Configurable, Pluggable {
public final static String X_POINT_ID = NutchPublisher.class.getName();
/**
* Use implementation specific configurations
* @param conf {@link org.apache.hadoop.conf.Configuration Configuration} to be used
*/
public boolean setConfig(Configuration conf);
/**
* This method publishes the event. Make sure that the event is a Java POJO to avoid
* Jackson JSON conversion errors. Currently we use the FetcherThreadEvent
* @param event
*/
public void publish(Object event, Configuration conf);
}