Skip to content

How to make a response to client?

Ta Van Dung edited this page Jun 17, 2016 · 2 revisions

#Answer

To make a response to client, use command Response, example:

context.command(Response.class)
            .command("4")
            .recipient(user)
            .data(game)
            .param("a", "b")
            .execute();

Hello World

Clone this wiki locally