You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could the SendTicket method also be made available to return a Task?
public async Task<ITicketResponse> SendTicket(ITicket ticket)
So it can be used like
var response = await SendTicket(ticket);
without having to use the blocking method which blocks the thread or using the event listeners where we need a mapping to return the MTS response to a REST request that initiated the call.
The text was updated successfully, but these errors were encountered:
Could the SendTicket method also be made available to return a Task?
public async Task<ITicketResponse> SendTicket(ITicket ticket)
So it can be used like
var response = await SendTicket(ticket);
without having to use the blocking method which blocks the thread or using the event listeners where we need a mapping to return the MTS response to a REST request that initiated the call.
The text was updated successfully, but these errors were encountered: