sapling/eden/fs/inodes/CacheHint.h
Andres Suarez fbdb46f5cb Tidy up license headers
Reviewed By: chadaustin

Differential Revision: D17872966

fbshipit-source-id: cd60a364a2146f0dadbeca693b1d4a5d7c97ff63
2019-10-11 05:28:23 -07:00

33 lines
684 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
namespace facebook {
namespace eden {
/**
* A hint to read or fetch APIs about whether they should internally cache or
* not.
*/
enum class CacheHint {
/**
* The result of this fetch will be cached by the caller and thus does not
* need to be cached internally.
*/
NotNeededAgain,
/**
* The result of this read or fetch will likely be requested again, so it
* should be cached if possible.
*/
LikelyNeededAgain,
};
} // namespace eden
} // namespace facebook