All versions
0.0.2-beta
Beta
CC Synaxis Connector 0.0.22 weeks ago 483
Uploaded by
Compatibility
Minecraft: Java Edition
1.21.1
Platform
NeoForge
Supported environments
Client and server
Required content
Any compatible version
Any compatible version
Changes
Main changes:
- hub.set() / hub.write() now only validate and enqueue; they no longer access the world or Synaxis from the CC worker thread.
- Writes are executed by the server tick in FIFO order.
- At most 256 writes are executed per tick, and the queue holds at most 1024 entries, preventing control scripts from overloading a single tick.
- After deleting or replacing a port, old queued writes will not be mistakenly written to the new port.
- hub.refresh() has been changed to execute via a CC main-thread task.
- When an asynchronous write fails, a cc_synaxis_super_hub_write_failed event is sent, with the port name as the argument.
- The README has documented the new asynchronous write semantics. The key code is located in CCSynaxisSuperHubBlockEntity.java (line 278) and CCSynaxisSuperHubPeripheral.java (line 70).
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:RJW88pUc:oUr01SY2"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:RJW88pUc:oUr01SY2"
}

