Class JobMessage
- java.lang.Object
-
- com.esri.arcgisruntime.concurrent.JobMessage
-
public class JobMessage extends java.lang.Object
A message from a job.- Since:
- 100.14.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
Gets the job message's message string.Job.MessageSeverity
getSeverity()
Gets the job message's severity: information, warning or error.Job.MessageSource
getSource()
Gets the source of the job message, either from the service or from the ArcGISRuntime client.java.util.Calendar
getTimestamp()
Gets the date and time that the job message was created.
-
-
-
Method Detail
-
getMessage
public java.lang.String getMessage()
Gets the job message's message string.- Returns:
- the job message's message string
- Since:
- 100.14.0
-
getSeverity
public Job.MessageSeverity getSeverity()
Gets the job message's severity: information, warning or error. .- Returns:
- the job message's severity: information, warning or error.
- Since:
- 100.14.0
-
getSource
public Job.MessageSource getSource()
Gets the source of the job message, either from the service or from the ArcGISRuntime client.- Returns:
- the source of the job message, either from the service or from the ArcGISRuntime client
- Since:
- 100.14.0
-
getTimestamp
public java.util.Calendar getTimestamp()
Gets the date and time that the job message was created. This will be the current system time on the user's device.- Returns:
- the date and time that the job message was created. This will be the current system time on the user's device.
- Since:
- 100.14.0
-
-