* Get the database of a DataBus instance. * * Currently, only one database exists for a DataBus instance. In the future, there may be multiple databases * for a DataBus instance. And the use cases are: * * - For front end, there is only one user, so one database suffice. * - For ba
()
| 53 | * - For back end, the server creates many databases, one database corresponds to one user respectively. |
| 54 | */ |
| 55 | public getDatabase(): Database { |
| 56 | return this._database; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | /** |
no outgoing calls
no test coverage detected