| | |
| | | logger.warn("不支持方法{}的request", method); |
| | | return; |
| | | } |
| | | requestProcessorMap.get(requestEvent.getRequest().getMethod()).process(requestEvent); |
| | | requestProcessorMap.get(method).process(requestEvent); |
| | | } |
| | | |
| | | /** |
| | |
| | | |
| | | @Override |
| | | public void processIOException(IOExceptionEvent exceptionEvent) { |
| | | |
| | | // System.out.println("processIOException"); |
| | | } |
| | | |
| | | @Override |
| | | public void processTransactionTerminated(TransactionTerminatedEvent transactionTerminatedEvent) { |
| | | |
| | | // System.out.println("processTransactionTerminated"); |
| | | } |
| | | |
| | | @Override |
| | | public void processDialogTerminated(DialogTerminatedEvent dialogTerminatedEvent) { |
| | | |
| | | CallIdHeader callId = dialogTerminatedEvent.getDialog().getCallId(); |
| | | System.out.println("processDialogTerminated:::::" + callId); |
| | | } |
| | | |
| | | |