@effect/cluster 0.38.0 → 0.38.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/EntityProxy/package.json +6 -0
- package/EntityProxyServer/package.json +6 -0
- package/dist/cjs/EntityProxy.js +126 -0
- package/dist/cjs/EntityProxy.js.map +1 -0
- package/dist/cjs/EntityProxyServer.js +54 -0
- package/dist/cjs/EntityProxyServer.js.map +1 -0
- package/dist/cjs/ShardStorage.js +6 -2
- package/dist/cjs/ShardStorage.js.map +1 -1
- package/dist/cjs/ShardingConfig.js +1 -1
- package/dist/cjs/ShardingConfig.js.map +1 -1
- package/dist/cjs/index.js +5 -1
- package/dist/dts/EntityProxy.d.ts +93 -0
- package/dist/dts/EntityProxy.d.ts.map +1 -0
- package/dist/dts/EntityProxyServer.d.ts +26 -0
- package/dist/dts/EntityProxyServer.d.ts.map +1 -0
- package/dist/dts/ShardStorage.d.ts.map +1 -1
- package/dist/dts/ShardingConfig.d.ts.map +1 -1
- package/dist/dts/index.d.ts +8 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/EntityProxy.js +116 -0
- package/dist/esm/EntityProxy.js.map +1 -0
- package/dist/esm/EntityProxyServer.js +45 -0
- package/dist/esm/EntityProxyServer.js.map +1 -0
- package/dist/esm/ShardStorage.js +6 -2
- package/dist/esm/ShardStorage.js.map +1 -1
- package/dist/esm/ShardingConfig.js +1 -1
- package/dist/esm/ShardingConfig.js.map +1 -1
- package/dist/esm/index.js +8 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +21 -5
- package/src/EntityProxy.ts +193 -0
- package/src/EntityProxyServer.ts +86 -0
- package/src/ShardStorage.ts +6 -2
- package/src/ShardingConfig.ts +0 -1
- package/src/index.ts +10 -0
package/src/ShardingConfig.ts
CHANGED
@@ -148,7 +148,6 @@ export const config: Config.Config<ShardingConfig["Type"]> = Config.all({
|
|
148
148
|
}).pipe(Config.map((options) => RunnerAddress.make(options)), Config.option),
|
149
149
|
runnerListenAddress: Config.all({
|
150
150
|
host: Config.string("listenHost").pipe(
|
151
|
-
Config.withDefault(defaultRunnerAddress.host),
|
152
151
|
Config.withDescription("The host to listen on.")
|
153
152
|
),
|
154
153
|
port: Config.integer("listenPort").pipe(
|
package/src/index.ts
CHANGED
@@ -43,6 +43,16 @@ export * as EntityAddress from "./EntityAddress.js"
|
|
43
43
|
*/
|
44
44
|
export * as EntityId from "./EntityId.js"
|
45
45
|
|
46
|
+
/**
|
47
|
+
* @since 1.0.0
|
48
|
+
*/
|
49
|
+
export * as EntityProxy from "./EntityProxy.js"
|
50
|
+
|
51
|
+
/**
|
52
|
+
* @since 1.0.0
|
53
|
+
*/
|
54
|
+
export * as EntityProxyServer from "./EntityProxyServer.js"
|
55
|
+
|
46
56
|
/**
|
47
57
|
* @since 1.0.0
|
48
58
|
*/
|