Objectively
Ultra-lightweight object oriented framework for GNU C.
Loading...
Searching...
No Matches
URLSessionDownloadTask Struct Reference

#include <URLSessionDownloadTask.h>

Overview

Use download tasks to save remote resources to file.

Definition at line 43 of file URLSessionDownloadTask.h.

Inheritance diagram for URLSessionDownloadTask:
URLSessionTask Object

Properties

FILE * file
 The target FILE.
 
URLSessionTask urlSessionTask
 The superclass.
 
- Properties inherited from URLSessionTask
size_t bytesExpectedToReceive
 The count of bytes this task expects to receive.
 
size_t bytesExpectedToSend
 The count of bytes this task expects to send.
 
size_t bytesReceived
 The count of bytes received.
 
size_t bytesSent
 The count of bytes sent.
 
URLSessionTaskCompletion completion
 The completion function.
 
ident data
 User data.
 
char * error
 The error buffer.
 
Object object
 The superclass.
 
URLSessionTaskProgress progress
 The progress function.
 
struct URLRequestrequest
 The request.
 
struct URLResponseresponse
 The response.
 
struct URLSessionsession
 The session.
 
URLSessionTaskState state
 The state.
 
- Properties inherited from Object
Classclazz
 Every instance of Object begins with a pointer to its Class.
 
unsigned int magic
 A header to allow introspection of Object types.
 

Methods

Class_URLSessionDownloadTask (void)
 The URLSessionDownloadTask archetype.
 
- Methods inherited from URLSessionTask
Class_URLSessionTask (void)
 The URLSessionTask archetype.
 
void cancel (URLSessionTask *)
 Cancels this task.
 
void execute (URLSessionTask *)
 Executes this task synchronously, on the calling thread.
 
URLSessionTaskinitWithRequestInSession (URLSessionTask *, struct URLRequest *, struct URLSession *, URLSessionTaskCompletion)
 Initializes this task with the given URLRequest.
 
void resume (URLSessionTask *)
 Starts or resumes this task.
 
void setup (URLSessionTask *)
 Sets up this task.
 
void suspend (URLSessionTask *)
 Suspends this task.
 
void teardown (URLSessionTask *)
 Tears down this task.
 
- Methods inherited from Object
Class_Object (void)
 The Object archetype.
 
Objectcopy (const Object *self)
 Creates a shallow copy of this Object.
 
void dealloc (Object *self)
 Frees all resources held by this Object.
 
Stringdescription (const Object *self)
 
int hash (const Object *self)
 
Objectinit (Object *self)
 Initializes this Object.
 
bool isEqual (const Object *self, const Object *other)
 Tests equality of the other Object.
 
bool isKindOfClass (const Object *self, const Class *clazz)
 Tests for Class hierarchy membership.
 

Protected Attributes

URLSessionDownloadTaskInterface * interface
 The interface.
 
- Protected Attributes inherited from URLSessionTask
URLSessionTaskInterface * interface
 The interface.
 
- Protected Attributes inherited from Object
ObjectInterface * interface
 The interface.
 

Property Details

◆ file

FILE* URLSessionDownloadTask::file

The target FILE.

Definition at line 59 of file URLSessionDownloadTask.h.

◆ interface

URLSessionDownloadTaskInterface* URLSessionDownloadTask::interface
protected

The interface.

Definition at line 54 of file URLSessionDownloadTask.h.

◆ urlSessionTask

URLSessionTask URLSessionDownloadTask::urlSessionTask

The superclass.

Definition at line 48 of file URLSessionDownloadTask.h.

Method Details

◆ _URLSessionDownloadTask()

Class * _URLSessionDownloadTask ( void  )

The URLSessionDownloadTask archetype.

Returns
The URLSessionDownloadTask Class.

Definition at line 77 of file URLSessionDownloadTask.c.

77 {
78 static Class *clazz;
79 static Once once;
80
81 do_once(&once, {
82 clazz = _initialize(&(const ClassDef) {
83 .name = "URLSessionDownloadTask",
84 .superclass = _URLSessionTask(),
85 .instanceSize = sizeof(URLSessionDownloadTask),
86 .interfaceOffset = offsetof(URLSessionDownloadTask, interface),
87 .interfaceSize = sizeof(URLSessionDownloadTaskInterface),
89 });
90 });
91
92 return clazz;
93}
static void initialize(Class *clazz)
Definition Array.c:710
Class * _initialize(const ClassDef *def)
Initializes the given Class.
Definition Class.c:86
long Once
The Once type.
Definition Once.h:37
#define do_once(once, block)
Executes the given block at most one time.
Definition Once.h:43
ClassDefs are passed to _initialize via an archetype to initialize a Class.
Definition Class.h:41
The runtime representation of a Class.
Definition Class.h:95
Class * clazz
Every instance of Object begins with a pointer to its Class.
Definition Object.h:55
Use download tasks to save remote resources to file.
URLSessionDownloadTaskInterface * interface
The interface.
Class * _URLSessionTask(void)
The URLSessionTask archetype.

The documentation for this struct was generated from the following files: