blob: e2a691607077234d09beea7abf732c2e293d1b33 [file] [log] [blame]
package org.apache.hawq.pxf.plugins.jdbc.writercallable;
/*
* 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.
*/
import org.apache.hawq.pxf.api.OneRow;
import java.util.concurrent.Callable;
import java.sql.SQLException;
/**
* An object that processes INSERT operation on {@link OneRow} objects
*/
public interface WriterCallable extends Callable<SQLException> {
/**
* Pass the next OneRow to this WriterCallable.
*
* @throws IllegalStateException if this WriterCallable must be call()ed before the next call to supply()
*/
void supply(OneRow row) throws IllegalStateException;
/**
* Check whether this WriterCallable must be called
*
* @return true if this WriterCallable must be call()ed before the next call to supply()
* @return false otherwise
*/
boolean isCallRequired();
/**
* Execute an INSERT query.
*
* @return null or a SQLException that happened when executing the query
* @return null if the query was empty (nothing was there to execute)
*
* @throws Exception an exception that happened during execution, but that is not related to the execution of the query itself (for instance, it may originate from {@link java.sql.PreparedStatement} close() method)
*/
@Override
SQLException call() throws Exception;
}