UniRx 에셋 추가
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using UnityEngine;
|
||||
|
||||
namespace UniRx.Diagnostics
|
||||
{
|
||||
public class ObservableLogger : IObservable<LogEntry>
|
||||
{
|
||||
static readonly Subject<LogEntry> logPublisher = new Subject<LogEntry>();
|
||||
|
||||
public static readonly ObservableLogger Listener = new ObservableLogger();
|
||||
|
||||
private ObservableLogger()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static Action<LogEntry> RegisterLogger(Logger logger)
|
||||
{
|
||||
if (logger.Name == null) throw new ArgumentNullException("logger.Name is null");
|
||||
|
||||
return logPublisher.OnNext;
|
||||
}
|
||||
|
||||
public IDisposable Subscribe(IObserver<LogEntry> observer)
|
||||
{
|
||||
return logPublisher.Subscribe(observer);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user