akka.persistence
Class PersistentChannel$

java.lang.Object
  extended by akka.persistence.PersistentChannel$

public class PersistentChannel$
extends java.lang.Object


Field Summary
static PersistentChannel$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
PersistentChannel$()
           
 
Method Summary
 Props props()
          Returns a channel actor configuration object for creating a PersistentChannel with a generated id and default PersistentChannelSettings.
 Props props(PersistentChannelSettings channelSettings)
          Returns a channel actor configuration object for creating a PersistentChannel with a generated id and specified channelSettings.
 Props props(java.lang.String channelId)
          Returns a channel actor configuration object for creating a PersistentChannel with the specified id and default PersistentChannelSettings.
 Props props(java.lang.String channelId, PersistentChannelSettings channelSettings)
          Returns a channel actor configuration object for creating a PersistentChannel with the specified id and specified channelSettings.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MODULE$

public static final PersistentChannel$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

PersistentChannel$

public PersistentChannel$()
Method Detail

props

public Props props()
Returns a channel actor configuration object for creating a PersistentChannel with a generated id and default PersistentChannelSettings.

Returns:
(undocumented)

props

public Props props(PersistentChannelSettings channelSettings)
Returns a channel actor configuration object for creating a PersistentChannel with a generated id and specified channelSettings.

Parameters:
channelSettings - channel configuration object.
Returns:
(undocumented)

props

public Props props(java.lang.String channelId)
Returns a channel actor configuration object for creating a PersistentChannel with the specified id and default PersistentChannelSettings.

Parameters:
channelId - channel id.
Returns:
(undocumented)

props

public Props props(java.lang.String channelId,
                   PersistentChannelSettings channelSettings)
Returns a channel actor configuration object for creating a PersistentChannel with the specified id and specified channelSettings.

Parameters:
channelId - channel id.
channelSettings - channel configuration object.
Returns:
(undocumented)