All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.simpleworkflow.flow.interceptors.AsyncRunnable Maven / Gradle / Ivy

Go to download

This artifact contains the higher level libraries that can be used in Amazon Simple WorkFlow Service

There is a newer version: 1.11.8
Show newest version
package com.amazonaws.services.simpleworkflow.flow.interceptors;

/**
 * Serves the same purpose as {@link Runnable}, but avoids special handling of checked exceptions.
 * 
 * @see AsyncExecutor
 */
public interface AsyncRunnable {
    
    public void run() throws Throwable;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy