Coder Social home page Coder Social logo

Comments (1)

doghappy avatar doghappy commented on August 18, 2024

Case 1 works

Let's check the server code

    socket.on("v1/chat/enter", (msg2) => {
        console.log("v1");
        console.log(`${msg2.toString()}`);
        const binaryMessage2 = Buffer.from(msg2.toString() + " - server", "utf-8");
        socket.emit("v1/chat/enter", binaryMessage2);
    });

socket.emit("v1/chat/enter", binaryMessage2); means that the server emits an event to the client, In this case, you need to use client.On("v1/chat/enter", reponseaction); to listen to this event.

Case 2 does not work

await client.EmitAsync("v1/chat/enter", reponseaction, Encoding.UTF8.GetBytes(Test));

It means that the server passes some parameters to the client, and when the client receives them, reponseaction will be called.

Usually it is used with the following code:

Server

    socket.on("v1/chat/enter", (msg2, fn) => {
        console.log("v1");
        console.log(`${msg2.toString()}`);
        const binaryMessage2 = Buffer.from(msg2.toString() + " - server", "utf-8");
        fn(binaryMessage2);
    });

Choose one of the following two ways:

1:

// server
socket.on("v1/chat/enter", (msg2) => {
    console.log("v1");
    console.log(`${msg2.toString()}`);
    const binaryMessage2 = Buffer.from(msg2.toString() + " - server", "utf-8");
    socket.emit("v1/chat/enter", binaryMessage2);
});

// client
client.On("v1/chat/enter", reponseaction);
await client.EmitAsync("v1/chat/enter", Encoding.UTF8.GetBytes(Test));

2:

// server
socket.on("v1/chat/enter", (msg2, fn) => {
    console.log("v1");
    console.log(`${msg2.toString()}`);
    const binaryMessage2 = Buffer.from(msg2.toString() + " - server", "utf-8");
    fn(binaryMessage2);
});

// client
await client.EmitAsync("v1/chat/enter", reponseaction, Encoding.UTF8.GetBytes(Test));

from socket.io-client-csharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.