aboutsummaryrefslogtreecommitdiff
path: root/mojo/public/java/system/src/org/chromium/mojo/system/Watcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/public/java/system/src/org/chromium/mojo/system/Watcher.java')
-rw-r--r--mojo/public/java/system/src/org/chromium/mojo/system/Watcher.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/mojo/public/java/system/src/org/chromium/mojo/system/Watcher.java b/mojo/public/java/system/src/org/chromium/mojo/system/Watcher.java
deleted file mode 100644
index 9c70161..0000000
--- a/mojo/public/java/system/src/org/chromium/mojo/system/Watcher.java
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2016 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.
-
-package org.chromium.mojo.system;
-
-import org.chromium.mojo.system.Core.HandleSignals;
-
-/**
- * Watches a handle for signals being satisfied.
- */
-public interface Watcher {
- /**
- * Callback passed to {@link Watcher#start}.
- */
- public interface Callback {
- /**
- * Called when the handle is ready.
- */
- public void onResult(int result);
- }
-
- /**
- * Starts watching a handle.
- */
- int start(Handle handle, HandleSignals signals, Callback callback);
-
- /**
- * Cancels an already-started watch.
- */
- void cancel();
-
- /**
- * Destroys the underlying implementation. Other methods will fail after destroy has been
- * called.
- */
- void destroy();
-}