Interface TicketBacklogHandler
-
- All Superinterfaces:
BacklogHandler<Ticket>
public interface TicketBacklogHandler extends BacklogHandler<Ticket>
This handler provides access to allTicket
objects within the backlog. It is only available in the novomind iAGENT routing process.- Since:
- 11.25
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<BacklogMessageInfo>
getBacklogMessageInfo(Ticket ticket)
This method returns theBacklogMessageInfo
for the givenTicket
.-
Methods inherited from interface com.novomind.ecom.api.iagent.backlog.BacklogHandler
get, isRoutable, stream
-
-
-
-
Method Detail
-
getBacklogMessageInfo
java.util.Optional<BacklogMessageInfo> getBacklogMessageInfo(Ticket ticket)
This method returns theBacklogMessageInfo
for the givenTicket
.- Parameters:
ticket
- a ticket for which theBacklogMessageInfo
is to be determined- Returns:
- the optional
BacklogMessageInfo
for the givenTicket
or an empty optional if theTicket
is not in the backlog - Since:
- 12.0
-
-