-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathSpeakerApi.cs
37 lines (27 loc) · 1.07 KB
/
SpeakerApi.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
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
namespace PostSharp.Samples.StoredProcedure
{
class SpeakerApi : BaseDbApi
{
public SpeakerApi(SqlConnection connection, SqlTransaction transaction = null) : base(connection, transaction)
{
}
// Sync methods.
[MethodImpl(MethodImplOptions.InternalCall)]
public extern IEnumerable<Speaker> GetActiveSpeakers();
[MethodImpl(MethodImplOptions.InternalCall)]
public extern IEnumerable<Speaker> GetSpeakers();
[MethodImpl(MethodImplOptions.InternalCall)]
public extern void SetSpeakerStatus(int id, bool isActive);
// Async variants of the same methods.
[MethodImpl(MethodImplOptions.InternalCall)]
public extern IAsyncEnumerable<Speaker> GetActiveSpeakersAsync();
[MethodImpl(MethodImplOptions.InternalCall)]
public extern IAsyncEnumerable<Speaker> GetSpeakersAsync();
[MethodImpl(MethodImplOptions.InternalCall)]
public extern Task SetSpeakerStatusAsync(int id, bool isActive);
}
}