summaryrefslogtreecommitdiffstats
path: root/mojo/public/c/environment/async_waiter.h
blob: 05689543b5bb7ec87afc11546f956484a6758f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MOJO_PUBLIC_C_ENVIRONMENT_ASYNC_WAITER_H_
#define MOJO_PUBLIC_C_ENVIRONMENT_ASYNC_WAITER_H_

#include "mojo/public/c/system/core.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef uintptr_t MojoAsyncWaitID;

typedef void (*MojoAsyncWaitCallback)(void* closure, MojoResult result);

struct MojoAsyncWaiter {
  // Asynchronously call MojoWait on a background thread, and pass the result
  // of MojoWait to the given MojoAsyncWaitCallback on the current thread.
  // Returns a non-zero MojoAsyncWaitID that can be used with CancelWait to
  // stop waiting. This identifier becomes invalid once the callback runs.
  MojoAsyncWaitID (*AsyncWait)(struct MojoAsyncWaiter* waiter,
                               MojoHandle handle,
                               MojoWaitFlags flags,
                               MojoDeadline deadline,
                               MojoAsyncWaitCallback callback,
                               void* closure);

  // Cancel an existing call to AsyncWait with the given MojoAsyncWaitID. The
  // corresponding MojoAsyncWaitCallback will not be called in this case.
  void (*CancelWait)(struct MojoAsyncWaiter* waiter,
                     MojoAsyncWaitID wait_id);
};

#ifdef __cplusplus
}  // extern "C"
#endif

#endif  // MOJO_PUBLIC_C_ENVIRONMENT_ASYNC_WAITER_H_