forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIChannelAcceptor.cs
More file actions
24 lines (17 loc) · 828 Bytes
/
Copy pathIChannelAcceptor.cs
File metadata and controls
24 lines (17 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.ServiceModel;
using System.ServiceModel.Channels;
namespace System.Web.Http.SelfHost.ServiceModel.Channels
{
internal interface IChannelAcceptor<TChannel> : ICommunicationObject
where TChannel : class, IChannel
{
TChannel AcceptChannel(TimeSpan timeout);
IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state);
TChannel EndAcceptChannel(IAsyncResult result);
bool WaitForChannel(TimeSpan timeout);
IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state);
bool EndWaitForChannel(IAsyncResult result);
}
}