blob: 0b79ec877f176434f06085ce4961b07ef4cc8d7e [file] [log] [blame]
// Copyright 2015 The Vanadium 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 io.v.rx.syncbase;
import com.google.common.util.concurrent.ListenableFuture;
import io.v.v23.context.VContext;
import io.v.v23.security.access.Permissions;
import java8.lang.FunctionalInterface;
@FunctionalInterface
interface Creatable {
ListenableFuture<Void> create(VContext vContext, Permissions permissions);
}