blob: 8da93dc964ed99f4b4bfdf4ded64f15cfd5f9a2d (
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
{
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();
}
}
|