public interface ExporterPrx extends StatefulServiceInterfacePrx
ExporterPrx e = sf.createExporter();
// Exporter is currently in the <i>configuration</i> state
// Objects can be added by id which should be present
// in the output.
e.addImage(1);
// As soon as a generate method is called, the objects
// added to the Exporter are converted to the specified
// format. The length of the file produced is returned.
// No more objects can be added to the Exporter, nor can
// another generate method be called.
long length = e.generateTiff();
// As soon as the server-side file is generated, read()
// can be called to get file segments. To create another
// file, create a second Exporter. Be sure to close all
// Exporter instances.
long read = 0
byte\[] buf;
while (true) {
buf = e.read(read, 1000000);
// Store to file locally here
if (buf.length < 1000000) {
break;
}
read += buf.length;
}
e.close();
Modifier and Type | Method and Description |
---|---|
void |
addImage(long id)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
void |
addImage(long id,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
Callback_Exporter_addImage __cb)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
Ice.Callback __cb)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_Exporter_addImage __cb)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_addImage(long id,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
Ice.AsyncResult |
begin_generateTiff()
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(Callback_Exporter_generateTiff __cb)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(Ice.Callback __cb)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_Exporter_generateTiff __cb)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Generates an OME-TIFF file.
|
Ice.AsyncResult |
begin_generateXml()
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(Callback_Exporter_generateXml __cb)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(Ice.Callback __cb)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_Exporter_generateXml __cb)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Generates an OME-XML file.
|
Ice.AsyncResult |
begin_read(long position,
int length)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
Callback_Exporter_read __cb)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
Ice.Callback __cb)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
IceInternal.Functional_GenericCallback1<byte[]> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
IceInternal.Functional_GenericCallback1<byte[]> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_Exporter_read __cb)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<byte[]> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Returns
length bytes from the output file. |
Ice.AsyncResult |
begin_read(long position,
int length,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<byte[]> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Returns
length bytes from the output file. |
void |
end_addImage(Ice.AsyncResult __result)
Adds a single image with basic metadata to the Exporter for inclusion
on the next call to getBytes().
|
long |
end_generateTiff(Ice.AsyncResult __result)
Generates an OME-TIFF file.
|
long |
end_generateXml(Ice.AsyncResult __result)
Generates an OME-XML file.
|
byte[] |
end_read(Ice.AsyncResult __result)
Returns
length bytes from the output file. |
long |
generateTiff()
Generates an OME-TIFF file.
|
long |
generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx)
Generates an OME-TIFF file.
|
long |
generateXml()
Generates an OME-XML file.
|
long |
generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx)
Generates an OME-XML file.
|
byte[] |
read(long position,
int length)
Returns
length bytes from the output file. |
byte[] |
read(long position,
int length,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Returns
length bytes from the output file. |
activate, activate, begin_activate, begin_activate, begin_activate, begin_activate, begin_activate, begin_activate, begin_activate, begin_activate, begin_activate, begin_activate, begin_close, begin_close, begin_close, begin_close, begin_close, begin_close, begin_close, begin_close, begin_close, begin_close, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_getCurrentEventContext, begin_passivate, begin_passivate, begin_passivate, begin_passivate, begin_passivate, begin_passivate, begin_passivate, begin_passivate, begin_passivate, begin_passivate, close, close, end_activate, end_close, end_getCurrentEventContext, end_passivate, getCurrentEventContext, getCurrentEventContext, passivate, passivate
begin_ice_flushBatchRequests, begin_ice_flushBatchRequests, begin_ice_flushBatchRequests, begin_ice_flushBatchRequests, begin_ice_getConnection, begin_ice_getConnection, begin_ice_getConnection, begin_ice_getConnection, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, end_ice_flushBatchRequests, end_ice_getConnection, end_ice_id, end_ice_ids, end_ice_invoke, end_ice_isA, end_ice_ping, equals, ice_adapterId, ice_batchDatagram, ice_batchOneway, ice_collocationOptimized, ice_compress, ice_connectionCached, ice_connectionId, ice_context, ice_datagram, ice_encodingVersion, ice_endpoints, ice_endpointSelection, ice_facet, ice_flushBatchRequests, ice_getAdapterId, ice_getCachedConnection, ice_getCommunicator, ice_getConnection, ice_getConnectionId, ice_getContext, ice_getEncodingVersion, ice_getEndpoints, ice_getEndpointSelection, ice_getFacet, ice_getIdentity, ice_getInvocationTimeout, ice_getLocator, ice_getLocatorCacheTimeout, ice_getRouter, ice_id, ice_id, ice_identity, ice_ids, ice_ids, ice_invocationTimeout, ice_invoke, ice_invoke, ice_isA, ice_isA, ice_isBatchDatagram, ice_isBatchOneway, ice_isCollocationOptimized, ice_isConnectionCached, ice_isDatagram, ice_isOneway, ice_isPreferSecure, ice_isSecure, ice_isTwoway, ice_locator, ice_locatorCacheTimeout, ice_oneway, ice_ping, ice_ping, ice_preferSecure, ice_router, ice_secure, ice_timeout, ice_twoway
void addImage(long id) throws ServerError
ServerError
void addImage(long id, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_addImage(long id)
Ice.AsyncResult begin_addImage(long id, java.util.Map<java.lang.String,java.lang.String> __ctx)
__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_addImage(long id, Ice.Callback __cb)
__cb
- The asynchronous callback object.Ice.AsyncResult begin_addImage(long id, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_addImage(long id, Callback_Exporter_addImage __cb)
__cb
- The asynchronous callback object.Ice.AsyncResult begin_addImage(long id, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_addImage __cb)
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_addImage(long id, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_addImage(long id, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_addImage(long id, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_addImage(long id, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.void end_addImage(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ServerError
long generateXml() throws ServerError
ServerError
long generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_generateXml()
Ice.AsyncResult begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx)
__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_generateXml(Ice.Callback __cb)
__cb
- The asynchronous callback object.Ice.AsyncResult begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_generateXml(Callback_Exporter_generateXml __cb)
__cb
- The asynchronous callback object.Ice.AsyncResult begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_generateXml __cb)
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_generateXml(IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_generateXml(IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.long end_generateXml(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ServerError
long generateTiff() throws ServerError
ServerError
long generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_generateTiff()
Ice.AsyncResult begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx)
__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_generateTiff(Ice.Callback __cb)
__cb
- The asynchronous callback object.Ice.AsyncResult begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_generateTiff(Callback_Exporter_generateTiff __cb)
__cb
- The asynchronous callback object.Ice.AsyncResult begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_generateTiff __cb)
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_generateTiff(IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_generateTiff(IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.long end_generateTiff(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ServerError
byte[] read(long position, int length) throws ServerError
length
bytes from the output file. The
file can be safely read until reset() is called.ServerError
byte[] read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
length
bytes from the output file. The
file can be safely read until reset() is called.__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_read(long position, int length)
length
bytes from the output file. The
file can be safely read until reset() is called.Ice.AsyncResult begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx)
length
bytes from the output file. The
file can be safely read until reset() is called.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_read(long position, int length, Ice.Callback __cb)
length
bytes from the output file. The
file can be safely read until reset() is called.__cb
- The asynchronous callback object.Ice.AsyncResult begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
length
bytes from the output file. The
file can be safely read until reset() is called.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_read(long position, int length, Callback_Exporter_read __cb)
length
bytes from the output file. The
file can be safely read until reset() is called.__cb
- The asynchronous callback object.Ice.AsyncResult begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_read __cb)
length
bytes from the output file. The
file can be safely read until reset() is called.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_read(long position, int length, IceInternal.Functional_GenericCallback1<byte[]> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
length
bytes from the output file. The
file can be safely read until reset() is called.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_read(long position, int length, IceInternal.Functional_GenericCallback1<byte[]> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
length
bytes from the output file. The
file can be safely read until reset() is called.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<byte[]> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
length
bytes from the output file. The
file can be safely read until reset() is called.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<byte[]> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
length
bytes from the output file. The
file can be safely read until reset() is called.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.byte[] end_read(Ice.AsyncResult __result) throws ServerError
length
bytes from the output file. The
file can be safely read until reset() is called.__result
- The asynchronous result object.ServerError