1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 14:12:56 +08:00

Add xmldoc notes about thread safety of api bindables

This commit is contained in:
Dean Herbert 2020-10-22 14:56:20 +09:00
parent 5a00a05a95
commit c6db832efa

View File

@ -11,11 +11,13 @@ namespace osu.Game.Online.API
{
/// <summary>
/// The local user.
/// This is not thread-safe and should be scheduled locally if consumed from a drawable component.
/// </summary>
Bindable<User> LocalUser { get; }
/// <summary>
/// The current user's activity.
/// This is not thread-safe and should be scheduled locally if consumed from a drawable component.
/// </summary>
Bindable<UserActivity> Activity { get; }
@ -35,6 +37,10 @@ namespace osu.Game.Online.API
/// </summary>
string Endpoint { get; }
/// <summary>
/// The current connection state of the API.
/// This is not thread-safe and should be scheduled locally if consumed from a drawable component.
/// </summary>
IBindable<APIState> State { get; }
/// <summary>