com.feedhenry.sdk2.FHAct Maven / Gradle / Ivy
/**
* Copyright Red Hat, Inc, and individual contributors.
*
* Licensed 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 com.feedhenry.sdk2;
import com.feedhenry.sdk.FHActCallback;
/**
* Represents a request call to FeedHenry.
*
* The request will be executed on a separate thread and the calling thread will
* be returned immediately. When the request is completed, the callback to
* process the response will be executed on the calling thread using the Looper
* class. The calling thread needs to be alive for the callback to be processed
* properly.
*
*/
public interface FHAct {
/**
* Sets the callback function to be executed when the action is finished.
*
* @param pCallback the callback function
*/
void setCallback(FHActCallback pCallback);
/**
* Executes the request asynchronously. Executes the callback function set
* by {@link #setCallback(FHActCallback pCallback)} when the request
* finishes.
*
*/
void execute();
/**
* Executes the request asynchronously. Executes the pCallback function when
* it finishes.
*
* @param pCallback the callback function
*
*/
void execute(FHActCallback pCallback);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy