Package org.eclipse.emf.cdo.common.lob
Schnittstelle CDOLobHandler
- Alle bekannten Unterschnittstellen:
CDOServerImporter.Handler
,CDOServerImporter.Handler2
public interface CDOLobHandler
A callback interface for handling large objects.
- Seit:
- 4.0
- Autor:
- Eike Stepper
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunghandleBlob
(byte[] id, long size) A callback method for handling abinary large object
.handleClob
(byte[] id, long size) A callback method for handling acharacter large object
.
-
Methodendetails
-
handleBlob
A callback method for handling abinary large object
. TheID
andsize
of the blob are passed by the caller. The implementor may return astream
that the blob content will be written to by the caller of this method, ornull
to indicate that the content is not needed.- Löst aus:
IOException
-
handleClob
A callback method for handling acharacter large object
. TheID
andsize
of the blob are passed by the caller. The implementor may return awriter
that the blob content will be written to by the caller of this method, ornull
to indicate that the content is not needed.- Löst aus:
IOException
-