You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISessionClient.cs 293 B

123456789101112
  1. using LLama.Web.Common;
  2. using LLama.Web.Models;
  3. namespace LLama.Web.Hubs
  4. {
  5. public interface ISessionClient
  6. {
  7. Task OnStatus(string connectionId, SessionConnectionStatus status);
  8. Task OnResponse(ResponseFragment fragment);
  9. Task OnError(string error);
  10. }
  11. }