Package omero.api
Interface ExporterPrx
-
- All Superinterfaces:
Ice.ObjectPrx
,ServiceInterfacePrx
,StatefulServiceInterfacePrx
- All Known Implementing Classes:
ExporterPrxHelper
public interface ExporterPrx extends StatefulServiceInterfacePrx
Stateful service for generating OME-XML or OME-TIFF from data stored in OMERO. Intended usage: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();
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method 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, 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, 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_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, 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_generateTiff()
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, 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_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_generateTiff __cb)
Generates an OME-TIFF file.Ice.AsyncResult
begin_generateTiff(Callback_Exporter_generateTiff __cb)
Generates an OME-TIFF file.Ice.AsyncResult
begin_generateXml()
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, 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_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_generateXml __cb)
Generates an OME-XML file.Ice.AsyncResult
begin_generateXml(Callback_Exporter_generateXml __cb)
Generates an OME-XML file.Ice.AsyncResult
begin_read(long position, int length)
Returnslength
bytes from the output file.Ice.AsyncResult
begin_read(long position, int length, Ice.Callback __cb)
Returnslength
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)
Returnslength
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)
Returnslength
bytes from the output file.Ice.AsyncResult
begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx)
Returnslength
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)
Returnslength
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)
Returnslength
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)
Returnslength
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)
Returnslength
bytes from the output file.Ice.AsyncResult
begin_read(long position, int length, Callback_Exporter_read __cb)
Returnslength
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)
Returnslength
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)
Returnslength
bytes from the output file.byte[]
read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx)
Returnslength
bytes from the output file.-
Methods inherited from interface Ice.ObjectPrx
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
-
Methods inherited from interface omero.api.StatefulServiceInterfacePrx
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
-
-
-
-
Method Detail
-
addImage
void addImage(long id) throws ServerError
Adds a single image with basic metadata to the Exporter for inclusion on the next call to getBytes().- Throws:
ServerError
-
addImage
void addImage(long id, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
Adds a single image with basic metadata to the Exporter for inclusion on the next call to getBytes().- Parameters:
__ctx
- The Context map to send with the invocation.- Throws:
ServerError
-
begin_addImage
Ice.AsyncResult begin_addImage(long id)
Adds a single image with basic metadata to the Exporter for inclusion on the next call to getBytes().- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__ctx
- The Context map to send with the invocation.- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__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.- Returns:
- The asynchronous result object.
-
begin_addImage
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().- Parameters:
__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.- Returns:
- The asynchronous result object.
-
end_addImage
void end_addImage(Ice.AsyncResult __result) throws ServerError
Adds a single image with basic metadata to the Exporter for inclusion on the next call to getBytes().- Parameters:
__result
- The asynchronous result object.- Throws:
ServerError
-
generateXml
long generateXml() throws ServerError
Generates an OME-XML file. The return value is the length of the file produced.- Throws:
ServerError
-
generateXml
long generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
Generates an OME-XML file. The return value is the length of the file produced.- Parameters:
__ctx
- The Context map to send with the invocation.- Throws:
ServerError
-
begin_generateXml
Ice.AsyncResult begin_generateXml()
Generates an OME-XML file. The return value is the length of the file produced.- Returns:
- The asynchronous result object.
-
begin_generateXml
Ice.AsyncResult begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx)
Generates an OME-XML file. The return value is the length of the file produced.- Parameters:
__ctx
- The Context map to send with the invocation.- Returns:
- The asynchronous result object.
-
begin_generateXml
Ice.AsyncResult begin_generateXml(Ice.Callback __cb)
Generates an OME-XML file. The return value is the length of the file produced.- Parameters:
__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_generateXml
Ice.AsyncResult begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
Generates an OME-XML file. The return value is the length of the file produced.- Parameters:
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_generateXml
Ice.AsyncResult begin_generateXml(Callback_Exporter_generateXml __cb)
Generates an OME-XML file. The return value is the length of the file produced.- Parameters:
__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_generateXml
Ice.AsyncResult begin_generateXml(java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_generateXml __cb)
Generates an OME-XML file. The return value is the length of the file produced.- Parameters:
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_generateXml
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. The return value is the length of the file produced.- Parameters:
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.- Returns:
- The asynchronous result object.
-
begin_generateXml
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. The return value is the length of the file produced.- Parameters:
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.- Returns:
- The asynchronous result object.
-
begin_generateXml
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. The return value is the length of the file produced.- Parameters:
__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.- Returns:
- The asynchronous result object.
-
begin_generateXml
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. The return value is the length of the file produced.- Parameters:
__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.- Returns:
- The asynchronous result object.
-
end_generateXml
long end_generateXml(Ice.AsyncResult __result) throws ServerError
Generates an OME-XML file. The return value is the length of the file produced.- Parameters:
__result
- The asynchronous result object.- Throws:
ServerError
-
generateTiff
long generateTiff() throws ServerError
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Throws:
ServerError
-
generateTiff
long generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Parameters:
__ctx
- The Context map to send with the invocation.- Throws:
ServerError
-
begin_generateTiff
Ice.AsyncResult begin_generateTiff()
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Returns:
- The asynchronous result object.
-
begin_generateTiff
Ice.AsyncResult begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx)
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Parameters:
__ctx
- The Context map to send with the invocation.- Returns:
- The asynchronous result object.
-
begin_generateTiff
Ice.AsyncResult begin_generateTiff(Ice.Callback __cb)
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Parameters:
__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_generateTiff
Ice.AsyncResult begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Parameters:
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_generateTiff
Ice.AsyncResult begin_generateTiff(Callback_Exporter_generateTiff __cb)
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Parameters:
__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_generateTiff
Ice.AsyncResult begin_generateTiff(java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_generateTiff __cb)
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Parameters:
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_generateTiff
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. The return value is the length of the file produced. This method ends configuration.- Parameters:
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.- Returns:
- The asynchronous result object.
-
begin_generateTiff
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. The return value is the length of the file produced. This method ends configuration.- Parameters:
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.- Returns:
- The asynchronous result object.
-
begin_generateTiff
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. The return value is the length of the file produced. This method ends configuration.- Parameters:
__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.- Returns:
- The asynchronous result object.
-
begin_generateTiff
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. The return value is the length of the file produced. This method ends configuration.- Parameters:
__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.- Returns:
- The asynchronous result object.
-
end_generateTiff
long end_generateTiff(Ice.AsyncResult __result) throws ServerError
Generates an OME-TIFF file. The return value is the length of the file produced. This method ends configuration.- Parameters:
__result
- The asynchronous result object.- Throws:
ServerError
-
read
byte[] read(long position, int length) throws ServerError
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Throws:
ServerError
-
read
byte[] read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__ctx
- The Context map to send with the invocation.- Throws:
ServerError
-
begin_read
Ice.AsyncResult begin_read(long position, int length)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Returns:
- The asynchronous result object.
-
begin_read
Ice.AsyncResult begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__ctx
- The Context map to send with the invocation.- Returns:
- The asynchronous result object.
-
begin_read
Ice.AsyncResult begin_read(long position, int length, Ice.Callback __cb)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_read
Ice.AsyncResult begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_read
Ice.AsyncResult begin_read(long position, int length, Callback_Exporter_read __cb)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_read
Ice.AsyncResult begin_read(long position, int length, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_Exporter_read __cb)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.- Returns:
- The asynchronous result object.
-
begin_read
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)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.- Returns:
- The asynchronous result object.
-
begin_read
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)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.- Returns:
- The asynchronous result object.
-
begin_read
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)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__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.- Returns:
- The asynchronous result object.
-
begin_read
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)
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__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.- Returns:
- The asynchronous result object.
-
end_read
byte[] end_read(Ice.AsyncResult __result) throws ServerError
Returnslength
bytes from the output file. The file can be safely read until reset() is called.- Parameters:
__result
- The asynchronous result object.- Throws:
ServerError
-
-