/** The path of the file to write to. */
private final String path;
+ /** The output stream writing to the file. */
private FileOutputStream fileOutputStream;
/** The current metadata. */
/** Whether to publish the server. */
private final boolean publishServer;
+ /** The output stream to the server. */
private OutputStream socketOutputStream;
/** The current metadata. */
/** Whether the source was changed. */
private boolean sourceChanged;
+ /**
+ * Creates a new multi source.
+ *
+ * @param eventBus
+ * The event bus
+ */
@Inject
public MultiSource(EventBus eventBus) {
this.eventBus = eventBus;