aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-09-08 21:32:09 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-09-08 21:32:09 +0300
commit6bf32e1ca54e489c36857fabd83b297cb5f57917 (patch)
tree91538586640db940c4499cccf58b33646b095927 /Software/Visual_Studio/FSE/Tango.FSE.Common
parent6453740cfef3ce3a2e83261d5908818ac1c6789d (diff)
downloadTango-6bf32e1ca54e489c36857fabd83b297cb5f57917.tar.gz
Tango-6bf32e1ca54e489c36857fabd83b297cb5f57917.zip
Dropped entire organization machines cache on connection (can be changed on settings).
Implemented multiple method of connectivity verification via settings. Implemented separation of Jobs display from events on insights. Reduced machine statuses opacity on insights.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs
index c85a5fd35..65bde1f6e 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/FSESettings.cs
@@ -4,6 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
+using Tango.FSE.BL.Connectivity;
using Tango.FSE.Common.Diagnostics;
using Tango.PMR.Integration;
using Tango.Settings;
@@ -147,6 +148,11 @@ namespace Tango.FSE.Common
public int FileAssociationServicePort { get; set; }
/// <summary>
+ /// Gets or sets the connectivity verification method.
+ /// </summary>
+ public ConnectivityVerificationMethod ConnectivityVerificationMethod { get; set; }
+
+ /// <summary>
/// Initializes a new instance of the <see cref="FSESettings"/> class.
/// </summary>
public FSESettings()
@@ -164,6 +170,7 @@ namespace Tango.FSE.Common
EnableAdaptiveScaling = true;
TerminatedExpectedly = true;
FileAssociationServicePort = 1800;
+ ConnectivityVerificationMethod = ConnectivityVerificationMethod.Default;
}
}
} \ No newline at end of file