Package org.apache.pekko.actor
Interface ExtensionId<T extends Extension>
- All Known Implementing Classes:
AbstractExtensionId
,ActorRefResolveThreadLocalCache$
,AdapterExtension$
,AddressTerminatedTopic$
,AddressUidExtension$
,BoundAddressesExtension$
,CallingThreadDispatcherQueues$
,CircuitBreakersRegistry$
,Cluster$
,ClusterClientReceptionist$
,ClusterMetricsExtension$
,ClusterSharding$
,CoordinatedShutdown$
,Discovery$
,DistributedData$
,DistributedPubSub$
,Dns$
,DurableStateStoreRegistry$
,ExternalShardAllocation$
,InMemStorageExtension$
,JacksonObjectMapperProvider$
,LeaseProvider$
,LeaseProvider$
,Logging.LogExt$
,ManifestInfo$
,Persistence$
,PersistencePluginProxyExtension$
,PersistenceQuery$
,PersistenceTestKit.Settings$
,RARP$
,RemoteMetricsExtension$
,RemotingFlightRecorder$
,SerializationExtension$
,ShardingFlightRecorder$
,SnapshotAfter$
,SnapshotStorageEmulatorExtension$
,SnapshotTestKit.Settings$
,StreamRefResolver$
,SystemMaterializer$
,Tcp$
,Tcp$
,Tcp$
,TestConductor$
,TestKitExtension$
,TransportAdaptersExtension$
,Udp$
,UdpConnected$
public interface ExtensionId<T extends Extension>
Identifies an Extension
Lookup of Extensions is done by object identity, so the Id must be the same wherever it's used,
otherwise you'll get the same extension loaded multiple times.
-
Method Summary
Modifier and TypeMethodDescriptionapply
(ActorSystem system) Returns an instance of the extension identified by this ExtensionId instance.apply
(ClassicActorSystemProvider system) Returns an instance of the extension identified by this ExtensionId instance.createExtension
(ExtendedActorSystem system) Is used by Pekko to instantiate the Extension identified by this ExtensionId, internal use only.boolean
get
(ActorSystem system) Returns an instance of the extension identified by this ExtensionId instance.get
(ClassicActorSystemProvider system) Returns an instance of the extension identified by this ExtensionId instance.int
hashCode()
-
Method Details
-
apply
Returns an instance of the extension identified by this ExtensionId instance. -
apply
Returns an instance of the extension identified by this ExtensionId instance. -
createExtension
Is used by Pekko to instantiate the Extension identified by this ExtensionId, internal use only. -
equals
-
get
Returns an instance of the extension identified by this ExtensionId instance. Java API For extensions written in Scala that are to be used from Java also, this method should be overridden to get correct return type.override def get(system: ActorSystem): TheExtension = super.get(system)
-
get
Returns an instance of the extension identified by this ExtensionId instance. Java API For extensions written in Scala that are to be used from Java also, this method should be overridden to get correct return type.override def get(system: ClassicActorSystemProvider): TheExtension = super.get(system)
-
hashCode
int hashCode()
-