#108 Consistent package naming throughout the examples

This commit is contained in:
Ilkka Seppala
2015-07-24 11:32:22 +03:00
parent af92d8dde5
commit 3d488ec15a
128 changed files with 963 additions and 873 deletions

View File

@ -1,4 +1,4 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
/**
* One of possible approaches to terminate Producer-Consumer pattern is using PoisonPill idiom.

View File

@ -1,6 +1,6 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
import com.iluwatar.poisonpill.Message.Headers;
import com.iluwatar.poison.pill.Message.Headers;
/**
* Class responsible for receiving and handling submitted to the queue messages

View File

@ -1,4 +1,4 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
/**
* Endpoint to publish {@link Message} to queue

View File

@ -1,4 +1,4 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
/**
* Endpoint to retrieve {@link Message} from queue

View File

@ -1,4 +1,4 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
import java.util.Map;

View File

@ -1,4 +1,4 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
/**
* Represents abstraction of channel (or pipe) that bounds {@link Producer} and {@link Consumer}

View File

@ -1,8 +1,8 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
import java.util.Date;
import com.iluwatar.poisonpill.Message.Headers;
import com.iluwatar.poison.pill.Message.Headers;
/**
* Class responsible for producing unit of work that can be expressed as message and submitted to queue

View File

@ -1,4 +1,4 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
import java.util.Collections;
import java.util.HashMap;

View File

@ -1,4 +1,4 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;

View File

@ -1,8 +1,8 @@
package com.iluwatar.poisonpill;
package com.iluwatar.poison.pill;
import org.junit.Test;
import com.iluwatar.poisonpill.App;
import com.iluwatar.poison.pill.App;
public class AppTest {