Java android.support.v4.app JobIntentService fields, constructors, methods, implement or subclass

Example usage for Java android.support.v4.app JobIntentService fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.support.v4.app JobIntentService.

The text is from its open source code.

Subclass

android.support.v4.app.JobIntentService has subclasses.
Click this link to see all its subclasses.

Method

voidenqueueWork(@NonNull Context context, @NonNull Class cls, int jobId, @NonNull Intent work)
Call this to enqueue work for your subclass of JobIntentService .
voidenqueueWork(@NonNull Context context, @NonNull ComponentName component, int jobId, @NonNull Intent work)
Like #enqueueWork(Context,Class,int,Intent) , but supplies a ComponentName for the service to interact with instead of its class.