akka.persistence
Class Channel$

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

public class Channel$
extends java.lang.Object


Field Summary
static Channel$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
Channel$()
           
 
Method Summary
 Props props()
          Returns a channel actor configuration object for creating a Channel with a generated id and default ChannelSettings.
 Props props(ChannelSettings channelSettings)
          Returns a channel actor configuration object for creating a Channel with a generated id and specified channelSettings.
 Props props(java.lang.String channelId)
          Returns a channel actor configuration object for creating a Channel with the specified id and default ChannelSettings.
 Props props(java.lang.String channelId, ChannelSettings channelSettings)
          Returns a channel actor configuration object for creating a Channel 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 Channel$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

Channel$

public Channel$()
Method Detail

props

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

Returns:
(undocumented)

props

public Props props(ChannelSettings channelSettings)
Returns a channel actor configuration object for creating a Channel 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 Channel with the specified id and default ChannelSettings.

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

props

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

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