Open GoogleCodeExporter opened 9 years ago
[ProtoBuf.ProtoContract]
public class ProtoBufKeyValuePair<K, V>
{
[ProtoBuf.ProtoMember(1)]
public K Key { get; set; }
[ProtoBuf.ProtoMember(2)]
public V Value { get; set; }
}
[ProtoBuf.ProtoContract]
public class GenericCacheEntry<V>
{
[ProtoBuf.ProtoMember(1)]
public V Entry { get; set; }
[ProtoBuf.ProtoMember(2)]
public int ReadCount { get; set; }
[ProtoBuf.ProtoMember(3)]
public double MissCost { get; set; }
}
Original comment by e...@apption.com
on 2 Jan 2013 at 6:18
Original issue reported on code.google.com by
e...@apption.com
on 2 Jan 2013 at 6:16