-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathICloudEventFunction.cs
54 lines (51 loc) · 2.59 KB
/
ICloudEventFunction.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
48
49
50
51
52
53
54
// Copyright 2020, Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
using CloudNative.CloudEvents;
using System.Threading;
using System.Threading.Tasks;
namespace Google.Cloud.Functions.Framework
{
/// <summary>
/// Function accepting a CloudEvent without performing any type-specific data deserialization.
/// </summary>
public interface ICloudEventFunction
{
/// <summary>
/// Asynchronously handles the specified CloudEvent.
/// </summary>
/// <param name="cloudEvent">The CloudEvent extracted from the request.</param>
/// <param name="cancellationToken">A cancellation token which indicates if the request is aborted.</param>
/// <returns>A task representing the potentially-asynchronous handling of the event.
/// If the task completes, the function is deemed to be successful.</returns>
Task HandleAsync(CloudEvent cloudEvent, CancellationToken cancellationToken);
}
/// <summary>
/// Function accepting a CloudEvent expecting a particular data type, which is automatically deserialized
/// before function invocation.
/// </summary>
/// <typeparam name="TData">The expected type of the CloudEvent data. This type must be decorated
/// with <see cref="CloudEventFormatterAttribute"/> to indicate how to deserialize the CloudEvent.</typeparam>
public interface ICloudEventFunction<TData> where TData : class
{
/// <summary>
/// Asynchronously handles the specified CloudEvent.
/// </summary>
/// <param name="cloudEvent">The original CloudEvent extracted from the request.</param>
/// <param name="data">The deserialized object constructed from the data.</param>
/// <param name="cancellationToken">A cancellation token which indicates if the request is aborted.</param>
/// <returns>A task representing the potentially-asynchronous handling of the event.
/// If the task completes, the function is deemed to be successful.</returns>
Task HandleAsync(CloudEvent cloudEvent, TData data, CancellationToken cancellationToken);
}
}