(this: Entity<string, any>, annotations: Context.Context<S>)
| 260 | return fromRpcGroup(this.type, this.protocol.annotateMerge(annotations)) |
| 261 | }, |
| 262 | annotateRpcsMerge<S>(this: Entity<string, any>, annotations: Context.Context<S>) { |
| 263 | return fromRpcGroup(this.type, this.protocol.annotateRpcsMerge(annotations)) |
| 264 | }, |
| 265 | getShardId(this: Entity<string, any>, entityId: EntityId) { |
| 266 | return Effect.map(shardingTag, (sharding) => sharding.getShardId(entityId, this.getShardGroup(entityId))) |
| 267 | }, |
nothing calls this directly
no test coverage detected