1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
7 // http://www.apache.org/licenses/LICENSE-2.0
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle
.ActiveRecord
.Framework
17 using System
.Collections
;
20 /// Implementation of this interface provide a way to get the current scope.
21 /// This is used by the rest of the Active Record framework to grab a scope (and from it a session).
23 public interface IThreadScopeInfo
26 /// Gets the current stack.
28 /// <value>The current stack.</value>
29 Stack CurrentStack { get; }
32 /// Gets the registered scope.
34 /// <returns></returns>
35 ISessionScope
GetRegisteredScope();
38 /// Registers the scope.
40 /// <param name="scope">The scope.</param>
41 void RegisterScope(ISessionScope scope
);
44 /// Unregister the scope.
46 /// <param name="scope">The scope.</param>
47 void UnRegisterScope(ISessionScope scope
);
50 /// Gets a value indicating whether this instance has initialized scope.
53 /// <c>true</c> if this instance has initialized scope; otherwise, <c>false</c>.
55 bool HasInitializedScope { get; }