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; }