Vagabond


IAppDomainManager

Namespace: MBrace.Vagabond.AppDomainPool

Interface implemented by MarshalByRef types used for managing Application domains. Types implementing the interface must carry a parameterless constructor.

Instance members

Instance memberDescription
x.Finalize()
Signature: unit -> unit
Modifiers: abstract

AppDomain finalization method.

x.Initialize(arg1)
Signature: IAppDomainConfiguration -> unit
Modifiers: abstract

AppDomain initializer method.

x.LastUsed
Signature: DateTime
Modifiers: abstract

Gets the last time this app domain instance was used. Used by the AppDomainPool to unload unused instances.

CompiledName: get_LastUsed

x.TaskCount
Signature: int
Modifiers: abstract

Gets the number of tasks currently active in the AppDomain. AppDomains with non-zero task count will never be unloaded by the AppDomainPool.

CompiledName: get_TaskCount

Fork me on GitHub