Enum PutResult
Denotes statuses of cache table Put
Namespace: NFX.ApplicationModel.Pile
Assembly: NFX.dll
Syntax
public enum PutResult
  Fields
| Name | Description | 
|---|---|
| Collision | The item could not be put because it collides with existing data that can not be overwritten because it has higher priority and there is no extra space  | 
      
| Inserted | The item was inserted into cache table anew  | 
      
| Overwritten | The item was inserted instead of an existing item with lower or equal priority  | 
      
| Replaced | The item replaced an existing item with the same key  |