Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
ResultLatch.java
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015, the Dart project authors.
3 *
4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except
5 * in compliance with the License. You may obtain a copy of the License at
6 *
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11 * or implied. See the License for the specific language governing permissions and limitations under
12 * the License.
13 */
14package org.dartlang.vm.service;
15
16/**
17 * {@link ResultLatch} is used by one thread to communicate a result to another thread.
18 */
19public class ResultLatch<T> extends OpLatch {
20 private T value;
21
22 public T getValue() {
24 return value;
25 }
26
27 public void setValue(T value) {
28 this.value = value;
29 opComplete();
30 }
31}
uint8_t value
#define T