blob: 5626f01e309bb2666080140a3a7858b4b7d361ce (
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
33
34
35
36
37
|
// **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
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);
}
}
}
|