(this: Entity<string, any>, entityId: EntityId)
| 229 | return fromRpcGroup(this.type, this.protocol.annotateRpcsContext(context)) |
| 230 | }, |
| 231 | getShardId(this: Entity<string, any>, entityId: EntityId) { |
| 232 | return Effect.map(shardingTag, (sharding) => sharding.getShardId(entityId, this.getShardGroup(entityId))) |
| 233 | }, |
| 234 | get client() { |
| 235 | return shardingTag.pipe( |
| 236 | Effect.flatMap((sharding) => sharding.makeClient(this as any)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…