blob: 665b504ef3eef149b7f6c87c096bdb2aea7e5103 (
plain)
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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
namespace Ice
{
/// <summary>
/// Base class that allows a server intercept incoming requests.
/// The application must derive a concrete class from DispatchInterceptor
/// that implements the DispatchInterceptor.dispatch operation. An instance of this derived
/// class can be registered with an object adapter like any other servant.
/// A dispatch interceptor is useful particularly to automatically retry requests
/// that have failed due to a recoverable error condition.
/// </summary>
public abstract class DispatchInterceptor : ObjectImpl
{
/// <summary>
/// Called by the Ice run time to dispatch an incoming request. The implementation
/// of <code>dispatch</code> must dispatch the request to the actual servant.
/// </summary>
/// <param name="request">The details of the incoming request.</param>
/// <returns>The task if dispatched asynchronously, null otherwise.</returns>
public abstract System.Threading.Tasks.Task<OutputStream>
dispatch(Request request);
public override System.Threading.Tasks.Task<OutputStream>
iceDispatch(IceInternal.Incoming inc, Current current)
{
return dispatch(inc);
}
}
}
|