-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #209 from infiniticio/v0.12.2
- restore config files as data classes instead of interfaces - restore `fromConfig` method for clients and workers - (internal) rename InfiniticConsumer to InfiniticConsumerAsync - improve worker logging
- Loading branch information
Showing
47 changed files
with
5,522 additions
and
713 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
infinitic-client/src/main/kotlin/io/infinitic/clients/config/ClientConfigInterface.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* "Commons Clause" License Condition v1.0 | ||
* | ||
* The Software is provided to you by the Licensor under the License, as defined below, subject to | ||
* the following condition. | ||
* | ||
* Without limiting other conditions in the License, the grant of rights under the License will not | ||
* include, and the License does not grant to you, the right to Sell the Software. | ||
* | ||
* For purposes of the foregoing, “Sell” means practicing any or all of the rights granted to you | ||
* under the License to provide to third parties, for a fee or other consideration (including | ||
* without limitation fees for hosting or consulting/ support services related to the Software), a | ||
* product or service whose value derives, entirely or substantially, from the functionality of the | ||
* Software. Any license notice or attribution required by the License must also include this | ||
* Commons Clause License Condition notice. | ||
* | ||
* Software: Infinitic | ||
* | ||
* License: MIT License (https://opensource.org/licenses/MIT) | ||
* | ||
* Licensor: infinitic.io | ||
*/ | ||
package io.infinitic.clients.config | ||
|
||
import io.infinitic.transport.config.TransportConfigInterface | ||
|
||
interface ClientConfigInterface : TransportConfigInterface { | ||
/** Client name */ | ||
val name: String? | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.