2021-01-07 13:07:36 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using Realms;
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
|
|
|
public interface IRealmFactory
|
|
|
|
{
|
2021-01-13 16:34:44 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The main realm context, bound to the update thread.
|
|
|
|
/// </summary>
|
2021-04-24 01:13:29 +08:00
|
|
|
Realm Context { get; }
|
2021-01-13 16:34:44 +08:00
|
|
|
|
|
|
|
/// <summary>
|
2021-10-01 21:23:51 +08:00
|
|
|
/// Create a new realm context for use on the current thread.
|
2021-01-13 16:34:44 +08:00
|
|
|
/// </summary>
|
2021-09-30 22:42:40 +08:00
|
|
|
Realm CreateContext();
|
2021-01-07 13:07:36 +08:00
|
|
|
}
|
|
|
|
}
|