com.feiniaojin.ddd.ecosystem.pie.Channel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pie Show documentation
Show all versions of pie Show documentation
Implementation of Chain of Responsibility Pattern
The newest version!
package com.feiniaojin.ddd.ecosystem.pie;
/**
* 通道
*
*/
public interface Channel {
Channel process(Object in,
Object out);
ChannelPipeline pipeline();
interface ChannelProcessor {
void doProcess(Object in,
Object out);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy