net6.0 Ready to test
This commit is contained in:
@ -2,4 +2,4 @@
|
||||
|
||||
public class BackboneComponent
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class BackboneStatusCache
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface ILoggingSetupManager
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class StatusItem
|
||||
{
|
||||
}
|
||||
}
|
@ -15,7 +15,7 @@ public class Backbone
|
||||
protected Backbone() { }
|
||||
|
||||
[NotNull]
|
||||
public static Backbone Instance { get; }
|
||||
public static Backbone? Instance { get; }
|
||||
[NotNull]
|
||||
public ILoggingSetupManager LoggingConfigurationManager { get; set; }
|
||||
public BackboneStatusCache Status { get; }
|
||||
@ -44,4 +44,4 @@ public class Backbone
|
||||
protected void CloseConnectionOfComponents(List<BackboneComponent> components) { }
|
||||
protected virtual void StopAllComponents() { }
|
||||
protected void StopComponents(List<BackboneComponent> components) { }
|
||||
}
|
||||
}
|
@ -18,4 +18,4 @@ public class EmailMessage
|
||||
public EmailMessage SetPriority(MailPriority priority) => throw new NotImplementedException();
|
||||
public EmailMessage SetSubject(string subject) => throw new NotImplementedException();
|
||||
|
||||
}
|
||||
}
|
@ -3,4 +3,4 @@
|
||||
public interface ISmtp
|
||||
{
|
||||
void Send(EmailMessage message);
|
||||
}
|
||||
}
|
@ -5,4 +5,4 @@ public enum MailPriority
|
||||
Low = 0,
|
||||
Normal = 1,
|
||||
High = 2
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class ChangeDataCollectionHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class DataCollectionRequest
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class EquipmentEvent
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class EquipmentException
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class EquipmentSelfDescription
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class GetParameterValuesHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IConnectionControl
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IDataTracingHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IEquipmentCommandService
|
||||
{
|
||||
}
|
||||
}
|
@ -12,4 +12,4 @@ public interface IEquipmentControl : IPackageSource
|
||||
IEquipmentCommandService Commands { get; }
|
||||
[NotNull]
|
||||
IConnectionControl Connection { get; }
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IEquipmentSelfDescriptionBuilder
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IPackage
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface ISelfDescriptionLookup
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IVirtualParameterValuesHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class SetParameterValuesHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class TraceRequest
|
||||
{
|
||||
}
|
||||
}
|
@ -35,4 +35,4 @@ public interface IEquipmentDataCollection
|
||||
void TriggerTraceSample(TraceRequest traceRequest, long sampleId, IEnumerable<ParameterValue> parameters);
|
||||
void TriggerTraceSample(TraceRequest traceRequest, long sampleId, IEnumerable<ParameterValue> parameters, IPackage sourcePackage);
|
||||
void TriggerTraceSample(TraceRequest traceRequest, long sampleId, IEnumerable<ParameterValue> parameters, DateTime equipmentTimeStamp);
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IPackageSource
|
||||
{
|
||||
}
|
||||
}
|
@ -16,4 +16,4 @@ public class ParameterValue
|
||||
|
||||
public virtual ParameterValue Clone(EquipmentParameter newDefinition) => throw new NotImplementedException();
|
||||
public override string ToString() => base.ToString();
|
||||
}
|
||||
}
|
@ -19,4 +19,4 @@ public class EquipmentParameter
|
||||
|
||||
public override string ToString() => base.ToString();
|
||||
public string ToStringWithDetails() => base.ToString();
|
||||
}
|
||||
}
|
@ -8,4 +8,4 @@ public class Field
|
||||
public string Description { get; }
|
||||
public ParameterTypeDefinition TypeDefinition { get; }
|
||||
public bool CanBeNull { get; }
|
||||
}
|
||||
}
|
@ -8,4 +8,4 @@ public abstract class ParameterTypeDefinition
|
||||
public string Description { get; }
|
||||
|
||||
public override string ToString() => base.ToString();
|
||||
}
|
||||
}
|
@ -8,4 +8,4 @@ public class StructuredType : ParameterTypeDefinition
|
||||
public StructuredType(string name, string description, IList<Field> fields) : base(name, description) { }
|
||||
|
||||
public IList<Field> Fields { get; }
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IConfigurationObject
|
||||
{
|
||||
}
|
||||
}
|
@ -22,4 +22,4 @@ public class ModelObjectParameterDefinition : IConfigurationObject
|
||||
|
||||
public virtual ModelObjectParameterDefinition? Clone() => null;
|
||||
public virtual bool IsValidValue(string value) => false;
|
||||
}
|
||||
}
|
@ -13,4 +13,4 @@ public enum ModelObjectParameterType
|
||||
Double = 8,
|
||||
Float = 9,
|
||||
Enum = 10
|
||||
}
|
||||
}
|
@ -40,4 +40,4 @@ public class SecsConnectionConfiguration
|
||||
public virtual TimeSpan T7ConnectionIdle { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual TimeSpan T8NetworkIntercharacter { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user