blob: 3a79e0b72ab258e16a5075de0e31137a57d7c620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Common
{
/// <summary>
/// Represents an object that supports receiving application started/ready from the application manager.
/// </summary>
public interface INotifyApplicationStarted
{
/// <summary>
/// Called when the application has started (once before user login).
/// </summary>
void OnApplicationStarted();
/// <summary>
/// Called when is ready and user is logged-in. (happens every time a user logs-in)
/// </summary>
void OnApplicationReady();
}
}
|