:: com :: sun :: star :: ucb ::

interface XCachedDynamicResultSetFactory
Description
creates a ::com::sun::star::ucb::CachedDynamicResultSet .

Pay attention to instanciate this helper on clientside where your want to read the data respectively where you have instantiated the listener to the ::com::sun::star::ucb::XDynamicResultSet .

The needed stub on server side can be created using ::com::sun::star::ucb::XCachedDynamicResultSetStubFactory .


Methods' Summary
createCachedDynamicResultSet creates a remote optimizes ::com::sun::star::ucb::XDynamicResultSet .  
Methods' Details
createCachedDynamicResultSet
::com::sun::star::ucb::XDynamicResultSet
createCachedDynamicResultSet( [in] ::com::sun::star::ucb::XDynamicResultSet  SourceStub,
[in] ::com::sun::star::ucb::XContentIdentifierMapping  ContentIdentifierMapping );

Description
creates a remote optimizes ::com::sun::star::ucb::XDynamicResultSet .
Parameter SourceStub
must be an instance of service ::com::sun::star::ucb::CachedDynamicResultSetStub . It can be NULL . In this case you can use the interface ::com::sun::star::ucb::XSourceInitialization of the returned ::com::sun::star::ucb::CachedDynamicResultSet to set the stub later.
Parameter ContentIdentifierMapping
is not required, but can be set if it is necessary to change the identity of the contents accessable via the interface ::com::sun::star::ucb::XContentAccess of the ::com::sun::star::ucb::ContentResultSet (e.g., if merging two sources of the same type).
Returns
an instance of service ::com::sun::star::ucb::CachedDynamicResultSet .
Top of Page