Search Results for

    Show / Hide Table of Contents

    Interface IServerTaskData

    The system entity for a server task data, which holds the parameters and results for a given task

    See https://help.lemonedge.com/server-tasks/ for more information

    Inherited Members
    IBaseEntity.GetLabel(string)
    IBaseEntity.SetLabel(string, string)
    IBaseEntity.SetSilentLabel(string, string)
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.AlgorithmStepID
    IBaseEntity.SafeID
    IEquatable<IBaseEntity>.Equals(IBaseEntity)
    INotifyPropertyChanged.PropertyChanged
    INotifyPropertyChanging.PropertyChanging
    ICloneableAsync.Clone(object)
    ICloneableAsync.CopyFromSource(object)
    ICanTrackProperties.HasTrackedPropertyChanged(string)
    ICanTrackProperties.OriginalTrackedPropertyValue(string)
    ICanTrackProperties.OriginalTrackedPropertyValue<T>(string)
    ICanTrackProperties.ClearTrackedOriginalValues()
    ICanTrackProperties.GetAllOriginalTrackedPropertyValues()
    Namespace: LemonEdge.API.Entities.Tasks
    Assembly: LemonEdge.API.dll
    Syntax
    [EntityDefinition(EntityID.ServerTaskData, "dbo.LT_ServerTaskData", "ServerTaskData", SelectWithNoLock = true)]
    [EntityIndex(Name = "TaskData", ColumnNames = new string[] { "ServerTaskID" }, IndexOrder = new IndexOrder[] { IndexOrder.Ascending }, IsClustered = false, IsUnique = true)]
    public interface IServerTaskData : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    ChainedTaskParam

    The parameters for running the chained task.

    Declaration
    [EntityProperty(SQLType.VarBinary, true)]
    [EntityDescription("The parameters for running the chained task.")]
    byte[] ChainedTaskParam { get; set; }
    Property Value
    Type Description
    byte[]

    ServerTaskID

    [Key] Links to IServerTask. The parent server task these data param/results belongs to

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityRelationship(EntityID.ServerTask, "ID", SingleJoinType.One, "Server Task", "Data", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
    [Required]
    [RequiredNoDefaultIDValidation]
    Guid ServerTaskID { get; set; }
    Property Value
    Type Description
    Guid

    TaskParam

    The parameters for running this task.

    Declaration
    [EntityProperty(SQLType.VarBinary, true)]
    [EntityDescription("The parameters for running this task.")]
    byte[] TaskParam { get; set; }
    Property Value
    Type Description
    byte[]

    TaskResult

    The result for running this task.

    Declaration
    [EntityProperty(SQLType.VarBinary, true)]
    [EntityDescription("The result for running this task.")]
    byte[] TaskResult { get; set; }
    Property Value
    Type Description
    byte[]

    Extension Methods

    LinqExtensions.AsArray<T>(T)
    LinqExtensions.ToArrayOfOne<T>(T)
    LinqExtensions.ToListOfOne<T>(T)
    MiscExtensions.SetIfNotEqual<T, TP>(T, Expression<Func<T, TP>>, TP)
    WeakReferenceExtensions.WeakReference(object)
    SQLExtensions.ToSQLValue(object, bool)
    ReflectionExtensions.ClearEventInvocations(object, string)
    StringExtensions.ToCSVFormatString(object, Type)
    In this article
    Back to top © LemonEdge Technologies. All rights reserved.