Sasha Zoria

Results 12 comments of Sasha Zoria

Is there any solution to this problem without editing source code?

What if use something like a singleton? I.e. I can implement a struct that will have a one-field `response`. The initial state of this field will be null (None), after...

> > What if use something like a singleton? I.e. I can implement a struct that will have a one-field `response`. The initial state of this field will be null...

@SonuBardai If I understand correctly, we need to do the following 1. Add a new command before [7] exit, which will be called `log` 2. Create file in JSON format...

@SonuBardai your suggestion looks good. But I can't understand what is the purpose of logs if users cannot view them. If truth be told, I am new to Rust, so...

@SonuBardai I think that JSON format would more preferable.

I have some problems with updating my fork. When I run `git fetch upstream` I get the following error ``` Please make sure you have the correct access rights and...

As far as I understand `SimpleBroker::publish(model_registered); ` should call `clear` method from the `ModelCache` struct?

`ModelCache` should have a `subscribe` method which should call `update_schema`?

I used publish-subscribe in js in this way. ``` class PubSub { constructor() { this.instance = null; } init() { const events = {}; return { subscribe(evName, fn) { events[evName]...