blob: cb92c2fa923a4fc642f1476014804d8a80d32029 (
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-present 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
{
public interface BatchRequest
{
/// <summary>
/// Confirms the queuing of the batch request.
/// </summary>
void enqueue();
/// <summary>
/// Get the marshalled size of the request.
/// </summary>
/// <returns>The request size.</returns>
int getSize();
/// <summary>
/// Get the name of the operation
/// </summary>
/// <returns>The request operation.</returns>
string getOperation();
/// <summary>
/// The proxy used to invoke the batch request.
/// </summary>
/// <returns>The request proxy.</returns>
ObjectPrx getProxy();
}
}
|