Skip to content

Commit

Permalink
Replace messaging module with DGroup features.
Browse files Browse the repository at this point in the history
  • Loading branch information
kuujo committed Mar 31, 2016
1 parent ee6a072 commit 08b91e9
Show file tree
Hide file tree
Showing 125 changed files with 145 additions and 1,212 deletions.
Expand Up @@ -15,7 +15,7 @@
*/ */
package io.atomix.collections; package io.atomix.collections;


import io.atomix.collections.state.MapCommands; import io.atomix.collections.internal.MapCommands;
import io.atomix.collections.util.DistributedMapFactory; import io.atomix.collections.util.DistributedMapFactory;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.AbstractResource; import io.atomix.resource.AbstractResource;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/ */
package io.atomix.collections; package io.atomix.collections;


import io.atomix.collections.state.MultiMapCommands; import io.atomix.collections.internal.MultiMapCommands;
import io.atomix.collections.util.DistributedMultiMapFactory; import io.atomix.collections.util.DistributedMultiMapFactory;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.AbstractResource; import io.atomix.resource.AbstractResource;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/ */
package io.atomix.collections; package io.atomix.collections;


import io.atomix.collections.state.QueueCommands; import io.atomix.collections.internal.QueueCommands;
import io.atomix.collections.util.DistributedQueueFactory; import io.atomix.collections.util.DistributedQueueFactory;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.AbstractResource; import io.atomix.resource.AbstractResource;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/ */
package io.atomix.collections; package io.atomix.collections;


import io.atomix.collections.state.SetCommands; import io.atomix.collections.internal.SetCommands;
import io.atomix.collections.util.DistributedSetFactory; import io.atomix.collections.util.DistributedSetFactory;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.AbstractResource; import io.atomix.resource.AbstractResource;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.collections.state; package io.atomix.collections.internal;


import io.atomix.catalyst.buffer.BufferInput; import io.atomix.catalyst.buffer.BufferInput;
import io.atomix.catalyst.buffer.BufferOutput; import io.atomix.catalyst.buffer.BufferOutput;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.collections.state; package io.atomix.collections.internal;


import io.atomix.catalyst.util.Assert; import io.atomix.catalyst.util.Assert;
import io.atomix.catalyst.util.concurrent.Scheduled; import io.atomix.catalyst.util.concurrent.Scheduled;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.collections.state; package io.atomix.collections.internal;


import io.atomix.catalyst.buffer.BufferInput; import io.atomix.catalyst.buffer.BufferInput;
import io.atomix.catalyst.buffer.BufferOutput; import io.atomix.catalyst.buffer.BufferOutput;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.collections.state; package io.atomix.collections.internal;


import io.atomix.catalyst.util.concurrent.Scheduled; import io.atomix.catalyst.util.concurrent.Scheduled;
import io.atomix.collections.DistributedMultiMap; import io.atomix.collections.DistributedMultiMap;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.collections.state; package io.atomix.collections.internal;


import io.atomix.catalyst.buffer.BufferInput; import io.atomix.catalyst.buffer.BufferInput;
import io.atomix.catalyst.buffer.BufferOutput; import io.atomix.catalyst.buffer.BufferOutput;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.collections.state; package io.atomix.collections.internal;


import io.atomix.copycat.server.Commit; import io.atomix.copycat.server.Commit;
import io.atomix.resource.ResourceStateMachine; import io.atomix.resource.ResourceStateMachine;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.collections.state; package io.atomix.collections.internal;


import io.atomix.catalyst.buffer.BufferInput; import io.atomix.catalyst.buffer.BufferInput;
import io.atomix.catalyst.buffer.BufferOutput; import io.atomix.catalyst.buffer.BufferOutput;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.collections.state; package io.atomix.collections.internal;


import io.atomix.catalyst.util.concurrent.Scheduled; import io.atomix.catalyst.util.concurrent.Scheduled;
import io.atomix.copycat.server.Commit; import io.atomix.copycat.server.Commit;
Expand Down
Expand Up @@ -17,8 +17,8 @@


import io.atomix.catalyst.serializer.SerializableTypeResolver; import io.atomix.catalyst.serializer.SerializableTypeResolver;
import io.atomix.collections.DistributedMap; import io.atomix.collections.DistributedMap;
import io.atomix.collections.state.MapCommands; import io.atomix.collections.internal.MapCommands;
import io.atomix.collections.state.MapState; import io.atomix.collections.internal.MapState;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.ResourceFactory; import io.atomix.resource.ResourceFactory;
import io.atomix.resource.ResourceStateMachine; import io.atomix.resource.ResourceStateMachine;
Expand Down
Expand Up @@ -17,8 +17,8 @@


import io.atomix.catalyst.serializer.SerializableTypeResolver; import io.atomix.catalyst.serializer.SerializableTypeResolver;
import io.atomix.collections.DistributedMultiMap; import io.atomix.collections.DistributedMultiMap;
import io.atomix.collections.state.MultiMapCommands; import io.atomix.collections.internal.MultiMapCommands;
import io.atomix.collections.state.MultiMapState; import io.atomix.collections.internal.MultiMapState;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.ResourceFactory; import io.atomix.resource.ResourceFactory;
import io.atomix.resource.ResourceStateMachine; import io.atomix.resource.ResourceStateMachine;
Expand Down
Expand Up @@ -17,8 +17,8 @@


import io.atomix.catalyst.serializer.SerializableTypeResolver; import io.atomix.catalyst.serializer.SerializableTypeResolver;
import io.atomix.collections.DistributedQueue; import io.atomix.collections.DistributedQueue;
import io.atomix.collections.state.QueueCommands; import io.atomix.collections.internal.QueueCommands;
import io.atomix.collections.state.QueueState; import io.atomix.collections.internal.QueueState;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.ResourceFactory; import io.atomix.resource.ResourceFactory;
import io.atomix.resource.ResourceStateMachine; import io.atomix.resource.ResourceStateMachine;
Expand Down
Expand Up @@ -17,8 +17,8 @@


import io.atomix.catalyst.serializer.SerializableTypeResolver; import io.atomix.catalyst.serializer.SerializableTypeResolver;
import io.atomix.collections.DistributedSet; import io.atomix.collections.DistributedSet;
import io.atomix.collections.state.SetCommands; import io.atomix.collections.internal.SetCommands;
import io.atomix.collections.state.SetState; import io.atomix.collections.internal.SetState;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.ResourceFactory; import io.atomix.resource.ResourceFactory;
import io.atomix.resource.ResourceStateMachine; import io.atomix.resource.ResourceStateMachine;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/ */
package io.atomix.concurrent; package io.atomix.concurrent;


import io.atomix.concurrent.state.LockCommands; import io.atomix.concurrent.internal.LockCommands;
import io.atomix.concurrent.util.DistributedLockFactory; import io.atomix.concurrent.util.DistributedLockFactory;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.AbstractResource; import io.atomix.resource.AbstractResource;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.concurrent.state; package io.atomix.concurrent.internal;


import io.atomix.catalyst.buffer.BufferInput; import io.atomix.catalyst.buffer.BufferInput;
import io.atomix.catalyst.buffer.BufferOutput; import io.atomix.catalyst.buffer.BufferOutput;
Expand Down
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package io.atomix.concurrent.state; package io.atomix.concurrent.internal;


import io.atomix.catalyst.util.concurrent.Scheduled; import io.atomix.catalyst.util.concurrent.Scheduled;
import io.atomix.copycat.server.Commit; import io.atomix.copycat.server.Commit;
Expand Down
Expand Up @@ -17,8 +17,8 @@


import io.atomix.catalyst.serializer.SerializableTypeResolver; import io.atomix.catalyst.serializer.SerializableTypeResolver;
import io.atomix.concurrent.DistributedLock; import io.atomix.concurrent.DistributedLock;
import io.atomix.concurrent.state.LockCommands; import io.atomix.concurrent.internal.LockCommands;
import io.atomix.concurrent.state.LockState; import io.atomix.concurrent.internal.LockState;
import io.atomix.copycat.client.CopycatClient; import io.atomix.copycat.client.CopycatClient;
import io.atomix.resource.ResourceFactory; import io.atomix.resource.ResourceFactory;
import io.atomix.resource.ResourceStateMachine; import io.atomix.resource.ResourceStateMachine;
Expand Down

0 comments on commit 08b91e9

Please sign in to comment.