index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai/superstream/Superstream.java
package ai.superstream; import java.io.IOException; import java.nio.charset.StandardCharsets; import java.time.Duration; import java.util.ArrayList; import java.util.Arrays; import java.util.Base64; import java.util.Collections; import java.util.function.Consumer; import java.util.HashMap; import java.util.HashSet; im...
0
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai/superstream/SuperstreamConsumerInterceptor.java
package ai.superstream; import java.util.Map; import org.apache.kafka.clients.consumer.ConsumerInterceptor; import org.apache.kafka.clients.consumer.ConsumerRecord; import org.apache.kafka.clients.consumer.ConsumerRecords; import org.apache.kafka.clients.consumer.OffsetAndMetadata; import org.apache.kafka.common.Topi...
0
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai/superstream/SuperstreamCounters.java
package ai.superstream; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicLong; public class SuperstreamCounters { @JsonProperty("total_bytes_before_reduction") public AtomicLong TotalBytesBeforeReduction = new Ato...
0
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai/superstream/SuperstreamDeserializer.java
package ai.superstream; import java.nio.charset.StandardCharsets; import java.util.Map; import org.apache.kafka.common.serialization.Deserializer; import com.google.protobuf.Descriptors; import org.apache.kafka.common.header.Header; import org.apache.kafka.common.header.Headers; public class SuperstreamDeserialize...
0
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai/superstream/SuperstreamProducerInterceptor.java
package ai.superstream; import java.nio.charset.StandardCharsets; import java.util.Map; import org.apache.kafka.clients.producer.ProducerInterceptor; import org.apache.kafka.clients.producer.ProducerRecord; import org.apache.kafka.clients.producer.RecordMetadata; import org.apache.kafka.common.header.Header; import o...
0
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai
java-sources/ai/superstream/superstream-java/1.0.12-beta16/ai/superstream/SuperstreamSerializer.java
package ai.superstream; import java.nio.charset.StandardCharsets; import java.util.Map; import org.apache.kafka.clients.producer.ProducerConfig; import org.apache.kafka.common.header.Header; import org.apache.kafka.common.header.Headers; import org.apache.kafka.common.header.internals.RecordHeader; import org.apache....
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/AppConstants.java
package com.swaasa.swaasaplatform; import android.media.AudioFormat; import android.media.AudioRecord; import android.media.MediaRecorder; public class AppConstants { public static final String root_url = "https://swaasa.sandbox.swaasa.ai/api/"; //test environment // public static final String root_url = "...
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/Assessment.java
package com.swaasa.swaasaplatform; import com.google.gson.Gson; import com.swaasa.swaasaplatform.apis.APIService; import com.swaasa.swaasaplatform.model.BaseResponse; import com.swaasa.swaasaplatform.model.Gender; import com.swaasa.swaasaplatform.model.PredictionResponse; import com.swaasa.swaasaplatform.model.Symptom...
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/CoughRecorder.java
package com.swaasa.swaasaplatform; import android.annotation.SuppressLint; import android.media.AudioFormat; import android.media.AudioRecord; import android.media.MediaRecorder; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.Rand...
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/RestCallback.java
package com.swaasa.swaasaplatform; import com.swaasa.swaasaplatform.model.BaseResponse; public interface RestCallback<T> { <T extends BaseResponse > void onSuccess(T baseResponse); void onFailure(BaseResponse baseResponse); }
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/apis/APIService.java
package com.swaasa.swaasaplatform.apis; import com.swaasa.swaasaplatform.model.PredictionResponse; import com.swaasa.swaasaplatform.model.VerifyCoughResponse; import java.util.List; import okhttp3.MultipartBody; import okhttp3.RequestBody; import retrofit2.Call; import retrofit2.http.Multipart; import retrofit2.htt...
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/model/BaseResponse.java
package com.swaasa.swaasaplatform.model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import lombok.AllArgsConstructor; import lombok.Data; import lombok.ToString; @Data public class BaseResponse { public String getStatus() { return status; } publ...
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/model/Gender.java
package com.swaasa.swaasaplatform.model; public enum Gender { FEMALE(0), MALE(1); private final int value; private Gender(int value) { this.value = value; } public int getValue() { return value; } }
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/model/PredictionResponse.java
package com.swaasa.swaasaplatform.model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.io.Serializable; import lombok.Data; @Data public class PredictionResponse extends BaseResponse implements Serializable { @SerializedName("assessmentId") @Expo...
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/model/Record.java
package com.swaasa.swaasaplatform.model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.io.Serializable; import java.util.List; import java.util.Map; import lombok.Data; @Data public class Record implements Serializable { @SerializedName("status") ...
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/model/Symptoms.java
package com.swaasa.swaasaplatform.model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.io.Serializable; import lombok.Data; @Data public class Symptoms implements Serializable { @SerializedName("frequent_cough") @Expose public int frequentCoug...
0
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform
java-sources/ai/swaasa/sdk/android-sdk/1.1/com/swaasa/swaasaplatform/model/VerifyCoughResponse.java
package com.swaasa.swaasaplatform.model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.io.Serializable; import lombok.Getter; import lombok.ToString; @ToString @Getter public class VerifyCoughResponse extends BaseResponse implements Serializable{ @Se...
0
java-sources/ai/swim/swim-api
java-sources/ai/swim/swim-api/3.10.0/module-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/Downlink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/DownlinkException.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/Lane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/LaneException.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/Link.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/LinkException.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/SwimAgent.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/SwimContext.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/SwimLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/SwimResident.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/SwimRoute.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/SwimTransient.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/Uplink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/UplinkException.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim
java-sources/ai/swim/swim-api/3.10.0/swim/api/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/AbstractAgent.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/AbstractAgentRoute.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/Agent.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/AgentContext.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/AgentDef.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/AgentException.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/AgentFactory.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/AgentRoute.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/AgentRouteContext.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/agent/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/auth/AbstractAuthenticator.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/auth/Authenticator.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/auth/AuthenticatorContext.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/auth/AuthenticatorDef.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/auth/AuthenticatorException.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/auth/Credentials.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/auth/Identity.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/auth/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/client/Client.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/client/ClientException.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/client/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/data/ListData.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/data/MapData.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/data/SpatialData.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/data/ValueData.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/data/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/DownlinkFactory.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/DownlinkRecord.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/DownlinkStreamlet.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/DownlinkTransmuter.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/EventDownlink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/ListDownlink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/ListDownlinkRecord.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/MapDownlink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/MapDownlinkRecord.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/ValueDownlink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/ValueDownlinkRecord.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/downlink/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/function/DidClose.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/function/DidConnect.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/function/DidDisconnect.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/function/DidFail.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/function/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/HttpDownlink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/HttpLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/HttpLink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/HttpUplink.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/DecodeRequestHttp.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/DecodeResponseHttp.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/DidRequestHttp.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/DidRespondHttp.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/DoRequestHttp.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/DoRespondHttp.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/WillRequestHttp.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/WillRespondHttp.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api/http
java-sources/ai/swim/swim-api/3.10.0/swim/api/http/function/package-info.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/CommandLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/DemandLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/DemandMapLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/JoinMapLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/JoinValueLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/LaneFactory.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/ListLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/MapLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/SpatialLane.java
// Copyright 2015-2019 SWIM.AI 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 ...
0
java-sources/ai/swim/swim-api/3.10.0/swim/api
java-sources/ai/swim/swim-api/3.10.0/swim/api/lane/SupplyLane.java
// Copyright 2015-2019 SWIM.AI 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 ...