public void Deserialize(Runtime.Serialization.IO.CompactReader reader)
 {
     _value        = reader.ReadObject();
     _exception    = (EntryProcessorException)reader.ReadObject();
     _isSuccessful = (bool)reader.ReadBoolean();
     _key          = (string)reader.ReadString();
 }
 public EntryProcessorResult(string key, EntryProcessorException exception)
 {
     _key          = key;
     _exception    = exception;
     _isSuccessful = false;
 }