com.stanfy.enroscar.goro.ServiceContextAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enroscar-goro Show documentation
Show all versions of enroscar-goro Show documentation
Android laibrary for handling tasks in multiple queues
package com.stanfy.enroscar.goro;
import android.content.Context;
/**
* Indicates a task that can be supplied with a service context instance the task in executed in.
* This interface addresses a problem of injecting Android {@link android.content.Context} instance
* into tasks that are packed into {@link android.os.Parcel}.
*
* @author Roman Mazur - Stanfy (http://stanfy.com)
*/
public interface ServiceContextAware {
void injectServiceContext(Context context);
}