TeamFoundationCacheService<TKey, TValue> Class
A base class that can be used to implement an in-memory cache service.
This class provides thread safe get/add methods, implements ITeamFoundationService and cleanup scheduling.
Derived class must implement a cleanup logic.
Inheritance Hierarchy
System.Object
Microsoft.TeamFoundation.Framework.Server.TeamFoundationCacheService<TKey, TValue>
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
<TeamFoundationServiceDependency(GetType(TeamFoundationTaskService))> _
Public MustInherit Class TeamFoundationCacheService(Of TKey, TValue) _
Implements ITeamFoundationService
[TeamFoundationServiceDependency(typeof(TeamFoundationTaskService))]
public abstract class TeamFoundationCacheService<TKey, TValue> : ITeamFoundationService
[TeamFoundationServiceDependency(typeof(TeamFoundationTaskService))]
generic<typename TKey, typename TValue>
public ref class TeamFoundationCacheService abstract : ITeamFoundationService
[<AbstractClass>]
[<TeamFoundationServiceDependency(typeof(TeamFoundationTaskService))>]
type TeamFoundationCacheService<'TKey, 'TValue> =
class
interface ITeamFoundationService
end
JScript does not support generic types or methods.
Type Parameters
- TKey
- TValue
The TeamFoundationCacheService<TKey, TValue> type exposes the following members.
Constructors
Name | Description | |
---|---|---|
TeamFoundationCacheService<TKey, TValue> | Initializes a new instance of TeamFoundationCacheService class. |
Top
Methods
Name | Description | |
---|---|---|
Add | Adds an item to the cache. If an item with the specified key already occurs in the cached, then new item is not added to the dictionary and the method return an item that is already in a cache. | |
BulkRemove | ||
BulkSet | ||
Clear | Removes all items from the cache. This method is thread safe. | |
DoCleanup | ||
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
GetValues | ||
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Remove | ||
Set | ||
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
TryGetValue | Gets the value associated with the specified key. |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
ITeamFoundationService.ServiceEnd | This method is called when the service is stopped. | |
ITeamFoundationService.ServiceStart | Starts the service. |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.