mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.TestBase.Logging;
|
|
|
|
namespace Volo.Abp.DynamicProxy
|
|
{
|
|
public class SimpleInterceptionTargetClass : ICanLogOnObject
|
|
{
|
|
public List<string> Logs { get; } = new List<string>();
|
|
|
|
public virtual void DoIt()
|
|
{
|
|
Logs.Add("ExecutingDoIt");
|
|
}
|
|
|
|
public virtual int GetValue()
|
|
{
|
|
Logs.Add("ExecutingGetValue");
|
|
return 42;
|
|
}
|
|
|
|
public virtual async Task<int> GetValueAsync()
|
|
{
|
|
Logs.Add("EnterGetValueAsync");
|
|
await Task.Delay(5);
|
|
Logs.Add("MiddleGetValueAsync");
|
|
await Task.Delay(5);
|
|
Logs.Add("ExitGetValueAsync");
|
|
return 42;
|
|
}
|
|
|
|
public virtual async Task DoItAsync()
|
|
{
|
|
Logs.Add("EnterDoItAsync");
|
|
await Task.Delay(5);
|
|
Logs.Add("MiddleDoItAsync");
|
|
await Task.Delay(5);
|
|
Logs.Add("ExitDoItAsync");
|
|
}
|
|
}
|
|
} |