You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
272 B

package io.grpc;
import org.checkerframework.checker.nullness.qual.Nullable;
class Context {
static <T> Key<@Nullable T> key(String name);
static <T> Key<T> keyWithDefault(String name, T defaultValue);
class Key<T> {
T get(Context context);
T get();
}
}