Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

static void FetchFileById(FString ContentId, FCavrnusContentProgressFunction const CavrnusContentProgressFunction& OnProgress, FCavrnusContentFunction const CavrnusContentFunction& OnContentLoaded);

Delegates TypesOptions:

DECLARE_DYNAMIC_DELEGATE_TwoParams(FCavrnusContentProgressFunction, float, Progress, FString, Step);

DECLARE_DYNAMIC_DELEGATE_OneParam(FCavrnusContentFunction, const TArray<uint8>&, bytes);

typedef TFunction<void(float, const FString&)> CavrnusContentProgressFunction;

typedef TFunction<void(const TArray<uint8>&, const FString&)> CavrnusContentFunction;

- Description

Downloads an encrypted file to your device, and provides you with a stream.

...