WebSockets: rename Channel to ArdourMessageChannel
This commit is contained in:
committed by
Robin Gareus
parent
02cdd5b52d
commit
5c78c85ef5
@@ -16,12 +16,12 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
import { Channel } from './channel.js';
|
||||
import { ArdourMessageChannel } from './channel.js';
|
||||
|
||||
export class Ardour {
|
||||
|
||||
constructor () {
|
||||
this.channel = new Channel(location.host);
|
||||
this.channel = new ArdourMessageChannel(location.host);
|
||||
}
|
||||
|
||||
async open () {
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
const JSON_INF = 1.0e+128;
|
||||
|
||||
export class Channel {
|
||||
export class ArdourMessageChannel {
|
||||
|
||||
constructor (host) {
|
||||
// https://developer.mozilla.org/en-US/docs/Web/API/URL/host
|
||||
|
||||
Reference in New Issue
Block a user