本文整理汇总了Java中org.springframework.integration.annotation.Gateway类的典型用法代码示例。如果您正苦于以下问题:Java Gateway类的具体用法?Java Gateway怎么用?Java Gateway使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Gateway类属于org.springframework.integration.annotation包,在下文中一共展示了Gateway类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: receiveEvent
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel="export-inboud-events")
void receiveEvent(Event event);
示例2: fahrenheitToCelcius
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = "convert.input")
float fahrenheitToCelcius(float fahren);
示例3: send
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel="xform")
String send(String input);
示例4: send
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel="messages")
void send(String message);
示例5: send
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = "greetings")
void send(String message);
示例6: provisionFtpServer
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = FtpServerProvisionerClientAutoConfiguration.PROVISION_REQUESTS_CHANNEL_NAME)
String provisionFtpServer(FtpServerProvisionerRequest request);
示例7: process
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = Channels.PortfolioInitializationRequest,
replyChannel = Channels.PortfolioInitializationResponse)
ContractPortfolioRelation process(EntityReference msg);
示例8: processCreation
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = Channels.ContractCreationRequest,
replyChannel = Channels.ContractCreationResponse,
replyTimeout = 600000,
requestTimeout = 600000)
Contract processCreation(ContractCreation request);
示例9: processApprobation
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = Channels.ContractApprobationRequest,
replyChannel = Channels.ContractApprobationResponse,
replyTimeout = 600000,
requestTimeout = 600000)
Contract processApprobation(Contract request);
示例10: processPaymentReception
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = Channels.InitialPaymentReceptionRequest,
replyChannel = Channels.InitialPaymentReceptionResponse,
replyTimeout = 600000,
requestTimeout = 600000)
Order processPaymentReception(InitialPaymentReception request);
示例11: send
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = UserBinder.USER_INITIALIZED)
void send(User user);
示例12: submit
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = Source.OUTPUT)
void submit(FeedItem feedItem);
示例13: emitEvent
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel=EventSource.OUTPUT)
void emitEvent(Event event);
示例14: somethingSimpleWithReply
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = "allFilesChannel", replyChannel = "outputChannel")
List<SimpleRequest> somethingSimpleWithReply(SimpleRequest request);
示例15: somethingSimple
import org.springframework.integration.annotation.Gateway; //导入依赖的package包/类
@Gateway(requestChannel = "allFilesChannel")
SimpleRequest somethingSimple(SimpleRequest request);