1 package com.maverick.multiplex.channels;2 3 public interface StreamServerChannel {4 5 boolean isInitiator();6 7 String getId();8 9 }10