Package com.github.dreamhead.moco.dumper

Examples of com.github.dreamhead.moco.dumper.SocketRequestDumper


    public static ActualSocketServer createQuietServer(Optional<Integer> port) {
        return new ActualSocketServer(port, new QuietMonitor());
    }

    public static ActualSocketServer createLogServer(Optional<Integer> port) {
        return new ActualSocketServer(port, new Slf4jMonitor(new SocketRequestDumper(), new SocketResponseDumper()));
    }
View Full Code Here

TOP

Related Classes of com.github.dreamhead.moco.dumper.SocketRequestDumper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.