blob: e233f42ca4f7bab3bff33990d4740db09e64a52c [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
part of zircon;
// ignore_for_file: native_function_body_in_non_sdk_code
// ignore_for_file: public_member_api_docs
typedef AsyncWaitCallback = void Function(int status, int pending);
@pragma('vm:entry-point')
class HandleWaiter extends NativeFieldWrapperClass2 {
// Private constructor.
@pragma('vm:entry-point')
HandleWaiter._();
void cancel() native 'HandleWaiter_Cancel';
}