sdlCloseAsyncIo function

bool sdlCloseAsyncIo(
  1. Pointer<SdlAsyncIo> asyncio,
  2. bool flush,
  3. Pointer<SdlAsyncIoQueue> queue,
  4. Pointer<NativeType> userdata,
)

Close and free any allocated resources for an async I/O object.

Closing a file is also an asynchronous task! If a write failure were to happen during the closing process, for example, the task results will report it as usual.

Closing a file that has been written to does not guarantee the data has made it to physical media; it may remain in the operating system's file cache, for later writing to disk. This means that a successfully-closed file can be lost if the system crashes or loses power in this small window. To prevent this, call this function with the flush parameter set to true. This will make the operation take longer, and perhaps increase system load in general, but a successful result guarantees that the data has made it to physical storage. Don't use this for temporary files, caches, and unimportant data, and definitely use it for crucial irreplaceable files, like game saves.

This function guarantees that the close will happen after any other pending tasks to asyncio, so it's safe to open a file, start several operations, close the file immediately, then check for all results later. This function will not block until the tasks have completed.

Once this function returns non-NULL, asyncio is no longer valid, regardless of any future outcomes. Any completed tasks might still contain this pointer in their SDL_AsyncIOOutcome data, in case the app was using this value to track information, but it should not be used again.

If this function returns false, the close wasn't started at all, and it's safe to attempt to close again later.

An SDL_AsyncIOQueue must be specified. The newly-created task will be added to it when it completes its work.

\param asyncio a pointer to an SDL_AsyncIO structure to close. \param flush true if data should sync to disk before the task completes. \param queue a queue to add the new SDL_AsyncIO to. \param userdata an app-defined pointer that will be provided with the task results. \returns true on success or false on failure; call SDL_GetError() for more information.

\threadsafety It is safe to call this function from any thread, but two threads should not attempt to close the same object.

\since This function is available since SDL 3.2.0.

extern SDL_DECLSPEC bool SDLCALL SDL_CloseAsyncIO(SDL_AsyncIO *asyncio, bool flush, SDL_AsyncIOQueue *queue, void *userdata)

Implementation

bool sdlCloseAsyncIo(Pointer<SdlAsyncIo> asyncio, bool flush,
    Pointer<SdlAsyncIoQueue> queue, Pointer<NativeType> userdata) {
  final sdlCloseAsyncIoLookupFunction = libSdl3.lookupFunction<
      Uint8 Function(Pointer<SdlAsyncIo> asyncio, Uint8 flush,
          Pointer<SdlAsyncIoQueue> queue, Pointer<NativeType> userdata),
      int Function(
          Pointer<SdlAsyncIo> asyncio,
          int flush,
          Pointer<SdlAsyncIoQueue> queue,
          Pointer<NativeType> userdata)>('SDL_CloseAsyncIO');
  return sdlCloseAsyncIoLookupFunction(
          asyncio, flush ? 1 : 0, queue, userdata) ==
      1;
}