Class TimeoutJobException
Class representing a Tableau Job that timed out while waiting to finish
Inherited Members
Namespace: Tableau.Migration.Api.Models
Assembly: Tableau.Migration.dll
Syntax
public class TimeoutJobException : Exception, ISerializable, IEquatable<TimeoutJobException>
Constructors
TimeoutJobException(IJob?, ISharedResourcesLocalizer)
Creates a new TimeoutJobException object
Declaration
public TimeoutJobException(IJob? job, ISharedResourcesLocalizer sharedResourcesLocalizer)
Parameters
Type | Name | Description |
---|---|---|
IJob | job | The last job status that timed out. May be null if no job status was ever reported. |
ISharedResourcesLocalizer | sharedResourcesLocalizer | A string localizer. |
Properties
Job
Gets the job that timed out. May be null if no job status was ever reported.
Declaration
public IJob? Job { get; }
Property Value
Type | Description |
---|---|
IJob |
Methods
Equals(object?)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object? obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
bool | true if the specified object is equal to the current object; otherwise, false. |
Overrides
Equals(TimeoutJobException?)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(TimeoutJobException? other)
Parameters
Type | Name | Description |
---|---|---|
TimeoutJobException | other | An object to compare with this object. |
Returns
Type | Description |
---|---|
bool | true if the current object is equal to the |
GetHashCode()
Serves as the default hash function.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | A hash code for the current object. |