public void Start() { this.state = ServiceStatus.DISCONNECTED; rHandler = RedisHandler.Instance; rHandler.ConnectionStatusChanged += OnRedisHandlerConnectionStateChanged; rHandler.ConnectionStatusNotification += OnRedisHandlerConnectionNotificationStatus; rHandler.NewService("extrinsics"); ServiceConnectionStateChanged += OnServiceConnectionStateChanged; }
public void Start() { state = ServiceStatus.DISCONNECTED; rHandler = RedisHandler.Instance; rHandler.ConnectionStatusChanged += OnRedisHandlerConnectionStateChanged; rHandler.ConnectionStatusNotification += OnRedisHandlerConnectionStatusNotification; rHandler.NewService("texturer"); ServiceConnectionStateChanged += OnServiceConnectionStateChanged; }
void Start() { rect = new Rect(0, 0, screenWidth, screenHeight); renderTexture = new RenderTexture(screenWidth, screenHeight, 24); texture = new Texture2D(screenWidth, screenHeight, TextureFormat.RGB24, false); state = ServiceStatus.DISCONNECTED; rHandler = RedisHandler.Instance; rHandler.ConnectionStatusChanged += OnRedisHandlerConnectionStateChanged; rHandler.ConnectionStatusNotification += OnRedisHandlerConnectionStatusNotification; rHandler.NewService("recorder"); ServiceConnectionStateChanged += OnServiceConnectionStateChanged; }