Interface IGobbleGuiService

All Known Implementing Classes:
GobbleAgent

public interface IGobbleGuiService
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Inform about a move.
    void
    informNewGame(int rows, int cols, int invsize)
    Start a new game.
    jadex.future.IFuture<Board.Move>
    Make a move.
  • Method Details

    • informNewGame

      @POST void informNewGame(int rows, int cols, int invsize)
      Start a new game.
      Parameters:
      invsize - The inventory size.
      row - The row.
      col - The col.
    • informMove

      @POST void informMove(Board.Move move)
      Inform about a move.
      Parameters:
      move - The move.
    • makeMove

      @GET jadex.future.IFuture<Board.Move> makeMove()
      Make a move.
      Returns:
      The move.