mcwl-ai/mcwl-communityCenter/src/main/java/com/mcwl/communityCenter/service/CustomerService.java

12 lines
316 B
Java

package com.mcwl.communityCenter.service;
import org.springframework.web.socket.WebSocketSession;
import java.io.IOException;
public interface CustomerService {
void transferToHuman(String userId, WebSocketSession session);
void handleCustomerMessage(String userId, String message) throws IOException;
}