// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. // ********************************************************************* // Copyright (C) Microsoft. All rights reserved. // // @File: // // @Owner: // @Test: // // Purpose: // // Notes: // // @EndHeader@ // ********************************************************************* namespace FASTER.core { /// /// Status result of operation on FASTER /// public enum Status { /// /// For Read and RMW, item being read was found, and /// the operation completed successfully /// For Upsert, item was upserted successfully /// OK, /// /// For Read and RMW, item being read was not found /// NOTFOUND, /// /// Operation went pending (async) /// PENDING, /// /// Operation resulted in some error /// ERROR } }