Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Copyright 2015-2024 Nstream, inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package swim.warp;
import swim.structure.Form;
import swim.structure.Kind;
import swim.structure.Value;
import swim.uri.Uri;
public final class SyncRequest extends LinkAddressed {
public SyncRequest(Uri nodeUri, Uri laneUri, float prio, float rate, Value body) {
super(nodeUri, laneUri, prio, rate, body);
}
public SyncRequest(Uri nodeUri, Uri laneUri, float prio, float rate) {
this(nodeUri, laneUri, prio, rate, Value.absent());
}
public SyncRequest(Uri nodeUri, Uri laneUri, Value body) {
this(nodeUri, laneUri, 0f, 0f, body);
}
public SyncRequest(Uri nodeUri, Uri laneUri) {
this(nodeUri, laneUri, 0f, 0f, Value.absent());
}
public SyncRequest(String nodeUri, String laneUri, float prio, float rate, Value body) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), prio, rate, body);
}
public SyncRequest(String nodeUri, String laneUri, float prio, float rate) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), prio, rate, Value.absent());
}
public SyncRequest(String nodeUri, String laneUri, Value body) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), 0f, 0f, body);
}
public SyncRequest(String nodeUri, String laneUri) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), 0f, 0f, Value.absent());
}
@Override
public String tag() {
return "sync";
}
@Override
public Form form() {
return SyncRequest.FORM;
}
@Override
public SyncRequest nodeUri(Uri nodeUri) {
return new SyncRequest(nodeUri, this.laneUri, this.prio, this.rate, this.body);
}
@Override
public SyncRequest laneUri(Uri laneUri) {
return new SyncRequest(this.nodeUri, laneUri, this.prio, this.rate, this.body);
}
@Override
public SyncRequest body(Value body) {
return new SyncRequest(this.nodeUri, this.laneUri, this.prio, this.rate, body);
}
@Kind
public static final Form FORM = new SyncRequestForm();
}
final class SyncRequestForm extends LinkAddressedForm {
@Override
public String tag() {
return "sync";
}
@Override
public Class> type() {
return SyncRequest.class;
}
@Override
public SyncRequest create(Uri nodeUri, Uri laneUri, float prio, float rate, Value body) {
return new SyncRequest(nodeUri, laneUri, prio, rate, body);
}
}