Uses of Class
com.bytedesk.service.agent.AgentEntity
Packages that use AgentEntity
Package
Description
工作组服务包
管理客服工作组相关功能
-
Uses of AgentEntity in com.bytedesk.service.agent
Fields in com.bytedesk.service.agent with type parameters of type AgentEntityMethods in com.bytedesk.service.agent that return AgentEntityMethods in com.bytedesk.service.agent that return types with arguments of type AgentEntityModifier and TypeMethodDescriptionAgentRestService.findAllConnected()
AgentRestService.findByConnected
(boolean connected) AgentRepository.findByConnectedAndDeletedFalse
(boolean connected) AgentRestService.findByEmailAndOrgUid
(String email, String orgUid) AgentRepository.findByEmailAndOrgUidAndDeletedFalse
(String email, String orgUid) AgentRestService.findByMobileAndOrgUid
(String mobile, String orgUid) AgentRepository.findByMobileAndOrgUidAndDeletedFalse
(String mobile, String orgUid) AgentRepository.findByOrgUid
(String orgUid) AgentRepository.findByUserUid
(String userUid) AgentRestService.findByUserUid
(String userUid) AgentRestService.findByUserUidAndOrgUid
(String userUid, String orgUid) AgentRepository.findByUserUidAndOrgUidAndDeletedFalse
(String userUid, String orgUid) AgentService.getAvailableAgents()
static org.springframework.data.jpa.domain.Specification<AgentEntity>
AgentSpecification.search
(AgentRequest request) Methods in com.bytedesk.service.agent with parameters of type AgentEntityModifier and TypeMethodDescriptionAgentRestService.convertToResponse
(AgentEntity entity) private void
AgentRestService.handleFailedRetries
(AgentEntity agent) void
AgentRestService.handleOptimisticLockingFailureException
(org.springframework.orm.ObjectOptimisticLockingFailureException e, AgentEntity agent) void
AgentEntityListener.postPersist
(AgentEntity agent) void
AgentEntityListener.postUpdate
(AgentEntity agent) AgentRestService.save
(AgentEntity agent) -
Uses of AgentEntity in com.bytedesk.service.agent.event
Fields in com.bytedesk.service.agent.event declared as AgentEntityModifier and TypeFieldDescriptionprivate AgentEntity
AgentCreateEvent.agent
private AgentEntity
AgentUpdateEvent.agent
Constructors in com.bytedesk.service.agent.event with parameters of type AgentEntityModifierConstructorDescriptionAgentCreateEvent
(Object source, AgentEntity agent) AgentUpdateEvent
(Object source, AgentEntity agent, String updateType) -
Uses of AgentEntity in com.bytedesk.service.queue
Methods in com.bytedesk.service.queue with parameters of type AgentEntityModifier and TypeMethodDescriptionQueueService.enqueueAgent
(ThreadEntity threadEntity, AgentEntity agentEntity, VisitorRequest visitorRequest) QueueService.enqueueWorkgroup
(ThreadEntity threadEntity, AgentEntity agentEntity, WorkgroupEntity workgroupEntity, VisitorRequest visitorRequest) -
Uses of AgentEntity in com.bytedesk.service.strategy
Methods in com.bytedesk.service.strategy with parameters of type AgentEntityModifier and TypeMethodDescriptionprivate MessageProtobuf
AgentCsThreadCreationStrategy.handleAvailableAgent
(ThreadEntity threadFromRequest, AgentEntity agent, QueueMemberEntity queueMemberEntity) private MessageProtobuf
WorkgroupCsThreadCreationStrategy.handleAvailableWorkgroup
(ThreadEntity threadFromRequest, AgentEntity agent, QueueMemberEntity queueMemberEntity) private MessageProtobuf
AgentCsThreadCreationStrategy.handleOfflineAgent
(ThreadEntity threadFromRequest, AgentEntity agent, QueueMemberEntity queueMemberEntity) private MessageProtobuf
AgentCsThreadCreationStrategy.handleQueuedAgent
(ThreadEntity threadFromRequest, AgentEntity agent, QueueMemberEntity queueMemberEntity) private MessageProtobuf
WorkgroupCsThreadCreationStrategy.handleQueuedWorkgroup
(ThreadEntity threadFromRequest, AgentEntity agent, QueueMemberEntity queueMemberEntity) -
Uses of AgentEntity in com.bytedesk.service.utils
Methods in com.bytedesk.service.utils with parameters of type AgentEntityModifier and TypeMethodDescriptionstatic AgentResponse
ServiceConvertUtils.convertToAgentResponse
(AgentEntity agent) static UserProtobuf
ServiceConvertUtils.convertToUserProtobuf
(AgentEntity agent) static String
ServiceConvertUtils.convertToUserProtobufJSONString
(AgentEntity agent) static MessageEntity
ThreadMessageUtil.getAgentThreadOfflineMessage
(AgentEntity agent, ThreadEntity thread) static MessageProtobuf
ThreadMessageUtil.getAgentThreadQueueMessage
(AgentEntity agent, ThreadEntity thread) static MessageProtobuf
ThreadMessageUtil.getThreadWelcomeMessage
(AgentEntity agent, ThreadEntity thread) -
Uses of AgentEntity in com.bytedesk.service.visitor_thread
Methods in com.bytedesk.service.visitor_thread with parameters of type AgentEntityModifier and TypeMethodDescriptionVisitorThreadService.createAgentThread
(VisitorRequest visitorRequest, AgentEntity agent, String topic) VisitorThreadService.reInitAgentThreadExtra
(ThreadEntity thread, AgentEntity agent) -
Uses of AgentEntity in com.bytedesk.service.workgroup
Fields in com.bytedesk.service.workgroup with type parameters of type AgentEntityMethods in com.bytedesk.service.workgroup that return AgentEntityModifier and TypeMethodDescriptionWorkgroupRoutingService.selectAgent
(WorkgroupEntity workgroup, ThreadEntity thread, List<AgentEntity> availableAgents) 根据工作组路由模式选择客服private AgentEntity
WorkgroupRoutingService.selectByConsistentHash
(String visitorUid, List<AgentEntity> agents) 一致性哈希算法 相同访客尽量分配给同一个客服private AgentEntity
WorkgroupRoutingService.selectByFastestResponse
(List<AgentEntity> agents) 最快响应算法 选择平均响应时间最短的客服private AgentEntity
WorkgroupRoutingService.selectByLeastActive
(List<AgentEntity> agents) 最小活动数算法 选择当前会话数最少的客服private AgentEntity
WorkgroupRoutingService.selectByRandom
(List<AgentEntity> agents) 随机算法 随机选择一个可用客服private AgentEntity
WorkgroupRoutingService.selectByRoundRobin
(String workgroupUid, List<AgentEntity> agents) 轮询算法 按顺序将请求分配给每个客服private AgentEntity
WorkgroupRoutingService.selectByWeightedRandom
(List<AgentEntity> agents) 加权随机算法 根据客服评分和性能给予不同权重Methods in com.bytedesk.service.workgroup that return types with arguments of type AgentEntityMethods in com.bytedesk.service.workgroup with parameters of type AgentEntityModifier and TypeMethodDescriptionprivate double
WorkgroupRoutingService.calculateWeight
(AgentEntity agent) 计算客服权重private double
WorkgroupRoutingService.getAverageResponseTime
(AgentEntity agent) 获取平均响应时间(秒)Method parameters in com.bytedesk.service.workgroup with type arguments of type AgentEntityModifier and TypeMethodDescriptionWorkgroupRoutingService.selectAgent
(WorkgroupEntity workgroup, ThreadEntity thread, List<AgentEntity> availableAgents) 根据工作组路由模式选择客服private AgentEntity
WorkgroupRoutingService.selectByConsistentHash
(String visitorUid, List<AgentEntity> agents) 一致性哈希算法 相同访客尽量分配给同一个客服private AgentEntity
WorkgroupRoutingService.selectByFastestResponse
(List<AgentEntity> agents) 最快响应算法 选择平均响应时间最短的客服private AgentEntity
WorkgroupRoutingService.selectByLeastActive
(List<AgentEntity> agents) 最小活动数算法 选择当前会话数最少的客服private AgentEntity
WorkgroupRoutingService.selectByRandom
(List<AgentEntity> agents) 随机算法 随机选择一个可用客服private AgentEntity
WorkgroupRoutingService.selectByRoundRobin
(String workgroupUid, List<AgentEntity> agents) 轮询算法 按顺序将请求分配给每个客服private AgentEntity
WorkgroupRoutingService.selectByWeightedRandom
(List<AgentEntity> agents) 加权随机算法 根据客服评分和性能给予不同权重 -
Uses of AgentEntity in com.bytedesk.ticket.comment
Fields in com.bytedesk.ticket.comment declared as AgentEntity -
Uses of AgentEntity in com.bytedesk.ticket.identity
Methods in com.bytedesk.ticket.identity with parameters of type AgentEntityModifier and TypeMethodDescriptionvoid
TicketIdentityService.syncUser
(AgentEntity agent) 同步用户到Flowable