(this: Entity<string, any>, context: Context.Context<S>)
| 226 | return fromRpcGroup(this.type, this.protocol.annotateContext(context)) |
| 227 | }, |
| 228 | annotateRpcsContext<S>(this: Entity<string, any>, context: Context.Context<S>) { |
| 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 | }, |
nothing calls this directly
no test coverage detected