@trudb/tru-common-lib 0.0.485 → 0.0.486

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5608,14 +5608,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImpor
5608
5608
  }] });
5609
5609
 
5610
5610
  const connection = new signalR.HubConnectionBuilder()
5611
- .withUrl("https://localhost:44476/notificationhub")
5612
- .withAutomaticReconnect()
5613
- .build();
5611
+ .withUrl("https://localhost:44476/notificationhub", {
5612
+ skipNegotiation: true,
5613
+ transport: signalR.HttpTransportType.WebSockets,
5614
+ }).build();
5614
5615
  class TruConnectionHub {
5615
5616
  constructor() {
5616
- this.start = async () => {
5617
+ this.start = () => {
5617
5618
  try {
5618
- await connection.start().then(() => {
5619
+ connection.start().then(() => {
5619
5620
  console.log(`SignalR connection success! connectionId: ${connection.connectionId}`);
5620
5621
  connection.on("change", (value) => {
5621
5622
  console.log(JSON.parse(value));