use of org.jumpmind.symmetric.transport.http.HttpOutgoingTransport in project symmetric-ds by JumpMind.
the class SymmetricPushClient method open.
public void open() {
try {
transport = new HttpOutgoingTransport(new URL(buildUrl()), 30000, true, 0, -1, null, null, false, -1, false);
writer = new ProtocolDataWriter(nodeId, transport.openWriter(), false);
writer.start(batch);
} catch (Exception ex) {
throw new IoException(ex);
}
}
Aggregations