blob: 9bb2f9d11456033f15f13e6e7fbb8f9fc87e5b74 [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 io.v.v23.context.VContext;
import io.v.v23.verror.VException;
import java8.lang.FunctionalInterface;
@FunctionalInterface
interface ExistenceAware {
boolean exists(VContext vContext) throws VException;
}