-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
47 lines (40 loc) · 1.18 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System.Diagnostics;
using Amazon.Runtime;
using DynamoDBGenerator.Attributes;
using Dynatello;
using Dynatello.Builders;
using Dynatello.Handlers;
using Dynatello.Pipelines;
IRequestHandler<string, Cat?> getById = Cat
.FromId.OnTable("TABLE")
.ToGetRequestHandler(
x => x.ToGetRequestBuilder(),
x =>
{
x.RequestsPipelines.Add(new RequestDurationConsoleLogger());
}
);
if (args.Length == 1)
{
Cat? response = await getById.Send(args[0], CancellationToken.None);
Console.WriteLine(response);
}
else
{
throw new NotImplementedException();
}
public class RequestDurationConsoleLogger : IRequestPipeLine
{
public async Task<AmazonWebServiceResponse> Invoke(
RequestContext requestContext,
Func<RequestContext, Task<AmazonWebServiceResponse>> continuation
)
{
var stopwatch = Stopwatch.StartNew();
var result = await continuation(requestContext);
Console.WriteLine($"Duration: {stopwatch.Elapsed}");
return result;
}
}
[DynamoDBMarshaller(AccessName = "FromId", ArgumentType = typeof(string))]
public partial record Cat(string Id, string Name, double Cuteness);