cesium-native 0.46.0
Loading...
Searching...
No Matches
ITwinRealityDataContentLoaderFactory.h
1#include "TilesetContentLoader.h"
2#include "TilesetContentLoaderFactory.h"
3#include "TilesetContentLoaderResult.h"
4#include "TilesetExternals.h"
5
6#include <CesiumAsync/Future.h>
7
8#include <string>
9
10namespace Cesium3DTilesSelection {
19public:
25 std::function<CesiumAsync::Future<CesiumUtility::Result<std::string>>(
26 const std::string&)>;
27
51 const std::string& realityDataId,
52 const std::optional<std::string>& iTwinId,
53 const std::string& iTwinAccessToken,
54 TokenRefreshCallback&& tokenRefreshCallback);
55
56 virtual CesiumAsync::Future<
60 const TilesetExternals& externals,
61 const TilesetOptions& tilesetOptions,
62 const AuthorizationHeaderChangeListener& headerChangeListener) override;
63
64 virtual bool isValid() const override;
65
66private:
67 std::string _realityDataId;
68 std::optional<std::string> _iTwinId;
69 std::string _iTwinAccessToken;
70 TokenRefreshCallback _tokenRefreshCallback;
71};
72} // namespace Cesium3DTilesSelection
A factory for creating a TilesetContentLoader from data from the iTwin Reality Management API.
virtual CesiumAsync::Future< Cesium3DTilesSelection::TilesetContentLoaderResult< Cesium3DTilesSelection::TilesetContentLoader > > createLoader(const TilesetExternals &externals, const TilesetOptions &tilesetOptions, const AuthorizationHeaderChangeListener &headerChangeListener) override
Creates an instance of the loader corresponding to this factory.
ITwinRealityDataContentLoaderFactory(const std::string &realityDataId, const std::optional< std::string > &iTwinId, const std::string &iTwinAccessToken, TokenRefreshCallback &&tokenRefreshCallback)
Creates a new factory for loading iTwin reality data.
std::function< CesiumAsync::Future< CesiumUtility::Result< std::string > >( const std::string &)> TokenRefreshCallback
Callback to obtain a new access token for the iTwin API. Receives the previous access token as parame...
virtual bool isValid() const override
Returns true if a valid TilesetContentLoader can be constructed from this factory.
std::function< void(const std::string &header, const std::string &headerValue)> AuthorizationHeaderChangeListener
The type of a callback called when the Authorization header used by a tileset loader has changed.
The loader interface to load the tile content.
External interfaces used by a Tileset.
A value that will be available in the future, as produced by AsyncSystem.
Definition Promise.h:12
Classes that implement the 3D Tiles standard.
The result of creating a TilesetContentLoader, including the status, request, and any errors,...
Additional options for configuring a Tileset.