12 lines
316 B
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;
|
|
}
|