📄 defaultflusheventlistener.cs
字号:
using System;
namespace NHibernate.Event.Default
{
/// <summary>
/// Defines the default flush event listeners used by hibernate for
/// flushing session state in response to generated flush events.
/// </summary>
[Serializable]
public class DefaultFlushEventListener : AbstractFlushingEventListener, IFlushEventListener
{
public virtual void OnFlush(FlushEvent @event)
{
IEventSource source = @event.Session;
if (source.PersistenceContext.HasNonReadOnlyEntities)
{
FlushEverythingToExecutions(@event);
PerformExecutions(source);
PostFlush(source);
if (source.Factory.Statistics.IsStatisticsEnabled)
{
source.Factory.StatisticsImplementor.Flush();
}
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -