Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. package org.apache.activemq.gcd;
  2.  
  3. import java.nio.channels.SelectableChannel;
  4.  
  5. public class DispatchSystem {
  6.  
  7. static DispatchQueue getMainQueue() {
  8. return null;
  9. }
  10.  
  11. static DispatchQueue getGlobalQueue(int priority) {
  12. return null;
  13. }
  14.  
  15. static DispatchQueue createQueue(String label) {
  16. return null;
  17. }
  18.  
  19. static DispatchQueue getCurrentQueue() {
  20. return null;
  21. }
  22.  
  23. static void dispatchMain() {
  24. }
  25.  
  26. static DispatchSource createSource(SelectableChannel channel, int interestOps, DispatchQueue queue) {
  27. return null;
  28. }
  29.  
  30.  
  31.  
  32. }
Add Comment
Please, Sign In to add comment