
com.alibaba.spring.boot.rsocket.broker.services.AppQueryController Maven / Gradle / Ivy
package com.alibaba.spring.boot.rsocket.broker.services;
import com.alibaba.rsocket.metadata.AppMetadata;
import com.alibaba.spring.boot.rsocket.broker.responder.RSocketBrokerHandlerRegistry;
import com.alibaba.spring.boot.rsocket.broker.responder.RSocketBrokerResponderHandler;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import reactor.core.publisher.Flux;
import java.util.*;
/**
* App query controller
*
* @author leijuan
*/
@RestController
@RequestMapping("/app")
public class AppQueryController {
@Autowired
private RSocketBrokerHandlerRegistry handlerRegistry;
@GetMapping("/{appName}")
public Flux
© 2015 - 2025 Weber Informatics LLC | Privacy Policy