~elambert/gearmanij/gearman_java_library

« back to all changes in this revision

Viewing changes to src/org/gearman/common/GearmanPacket.java

  • Committer: Eric Lambert
  • Date: 2009-07-10 04:58:00 UTC
  • Revision ID: eric.d.lambert@gmail.com-20090710045800-9ucm5k18t3dejefe
renamed Packet classes

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
     *
41
41
     * @return event type.
42
42
     */
43
 
    public PacketType getPacketType();
 
43
    public GearmanPacketType getPacketType();
44
44
 
45
45
    public byte [] toBytes();
46
46
 
53
53
    
54
54
    public byte [] getDataComponentValue( DataComponentName component);
55
55
 
56
 
    public PacketMagic getMagic();
 
56
    public GearmanPacketMagic getMagic();
57
57
 
58
58
    public boolean requiresResponse();
59
59