toggle menu
UIQ3
7.1.0
Library
switch theme
search in API
UIQ3
/
net.sourceforge.uiq3.service
/
Job
Job
Library
abstract
class
Job
:
Runnable
,
Comparable
<
T
>
A job to be executed.
Author
"Martin Krischik" «krischik@users.sourceforge.net»
Since
1.0
Inheritors
LoadImage
Members
Constructors
Job
Link copied to clipboard
Library
protected
constructor
(
)
create an new job without receiver.
protected
constructor
(
receiver
:
Activity
)
create an new job.
Properties
logger
Link copied to clipboard
Library
private
val
logger
:
Logger
log instance, errors logged with this logger can be intercepted by and can be reported back to the back-end or - if unexpected - will fail JUnit tests.
receiver
Link copied to clipboard
Library
protected
val
receiver
:
Activity
Receiver of the work unit
TAG
Link copied to clipboard
Library
private
val
TAG
:
String
logging tag
Functions
clone
Link copied to clipboard
Library
protected
open
fun
clone
(
)
:
Any
compare
To
Link copied to clipboard
Library
open
fun
compareTo
(
job
:
Job
)
:
Int
Default compareTo method for Jobs
deliver
Link copied to clipboard
Library
protected
abstract
fun
deliver
(
)
Delivers the result.
equals
Link copied to clipboard
Library
open
fun
equals
(
o
:
Any
)
:
Boolean
Compares this instance with the specified object and indicates if they are equal.
finalize
Link copied to clipboard
Library
protected
open
fun
finalize
(
)
get
Class
Link copied to clipboard
Library
fun
getClass
(
)
:
Class
<
out
Any
>
hash
Code
Link copied to clipboard
Library
open
fun
hashCode
(
)
:
Int
notify
Link copied to clipboard
Library
fun
notify
(
)
notify
All
Link copied to clipboard
Library
fun
notifyAll
(
)
run
Link copied to clipboard
Library
fun
run
(
)
helper for the runOnUiThread method of the receiver activity.
to
String
Link copied to clipboard
Library
open
fun
toString
(
)
:
String
wait
Link copied to clipboard
Library
fun
wait
(
)
work
Link copied to clipboard
Library
protected
abstract
fun
work
(
)
Performs the work operation.