CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
IDashboard.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IDashboard.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Data portal dashboard</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10
12{
16 public interface IDashboard : IDisposable
17 {
21 DateTimeOffset FirstCall { get; }
26 DateTimeOffset LastCall { get; }
31 long TotalCalls { get; }
36 long FailedCalls { get; }
40 List<Activity> GetRecentActivity();
45 long CompletedCalls { get; }
58 }
59}
Arguments parameter passed to the interceptor methods.
Data portal server dashboard.
Definition: IDashboard.cs:17
void CompleteCall(InterceptArgs e)
Called by the data portal to indicate a call has been completed.
long CompletedCalls
Gets the number of times data portal calls have successfully completed
Definition: IDashboard.cs:45
void InitializeCall(InterceptArgs e)
Called by the data portal to indicate a call has been inititalized.
DateTimeOffset LastCall
Gets the most recent time the data portal was invoked
Definition: IDashboard.cs:26
long FailedCalls
Gets the number of times data portal calls have failed
Definition: IDashboard.cs:36
List< Activity > GetRecentActivity()
Gets the items in the recent activity queue.
DateTimeOffset FirstCall
Gets the time the data portal was first invoked
Definition: IDashboard.cs:21
long TotalCalls
Gets the total number of times the data portal has been invoked
Definition: IDashboard.cs:31